Files
swift-study/demo/Views/Mall/MallView.swift
2024-01-26 17:52:25 +08:00

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()
}