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 @@
//
// AccountView.swift
// demo
//
// Created by Jason on 2024/1/23.
//
import SwiftUI
struct AccountView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
AccountView()
}

View File

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

View File

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