This commit is contained in:
2024-01-22 18:13:01 +08:00
parent b4f90a9019
commit 8c2daac591
23 changed files with 605 additions and 55 deletions

View File

@@ -0,0 +1,20 @@
//
// MallView.swift
// jason
//
// Created by Jason on 2024/1/19.
//
import SwiftUI
struct MallView: View {
var body: some View {
ScrollView {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
}
#Preview {
MallView()
}