init
This commit is contained in:
18
demo/Views/Mall/CartView.swift
Normal file
18
demo/Views/Mall/CartView.swift
Normal 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()
|
||||
}
|
||||
18
demo/Views/Mall/CategoryView.swift
Normal file
18
demo/Views/Mall/CategoryView.swift
Normal 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()
|
||||
}
|
||||
18
demo/Views/Mall/GoodsCommentsView.swift
Normal file
18
demo/Views/Mall/GoodsCommentsView.swift
Normal 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()
|
||||
}
|
||||
18
demo/Views/Mall/GoodsDetailView.swift
Normal file
18
demo/Views/Mall/GoodsDetailView.swift
Normal 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()
|
||||
}
|
||||
18
demo/Views/Mall/MallView.swift
Normal file
18
demo/Views/Mall/MallView.swift
Normal 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()
|
||||
}
|
||||
Reference in New Issue
Block a user