21 lines
252 B
Swift
21 lines
252 B
Swift
//
|
|
// MallView.swift
|
|
// demo
|
|
//
|
|
// Created by Jason on 2024/1/23.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct MallView: View {
|
|
var body: some View {
|
|
ZStack(alignment: .topLeading) {
|
|
Text("Mall")
|
|
}
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
MallView()
|
|
}
|