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,30 @@
//
// LaunchScreen.swift
// jason
//
// Created by Jason on 2024/1/19.
//
import SwiftUI
struct LaunchScreen: View {
var body: some View {
Spacer()
Text("Jason.App")
.font(.largeTitle)
.fontWeight(.bold)
.foregroundColor(Color.red)
.multilineTextAlignment(.center)
Spacer()
Text("Copyright By Jason 2023")
.font(.custom("", size: 10))
.foregroundColor(Color.gray)
.multilineTextAlignment(.center)
}
}
#Preview {
LaunchScreen()
}