This commit is contained in:
2024-01-23 18:00:59 +08:00
commit c10f0dd29d
55 changed files with 1906 additions and 0 deletions

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,18 @@
//
// GoodsDetail.swift
// demo
//
// Created by Jason on 2024/1/23.
//
import SwiftUI
struct GoodsDetailView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
GoodsDetailView()
}

View File

@@ -0,0 +1,18 @@
//
// MallView.swift
// demo
//
// Created by Jason on 2024/1/23.
//
import SwiftUI
struct MallView: View {
var body: some View {
Text("Mall Page")
}
}
#Preview {
MallView()
}