init
This commit is contained in:
30
jason/Views/Layouts/LaunchScreen.swift
Normal file
30
jason/Views/Layouts/LaunchScreen.swift
Normal 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()
|
||||
}
|
||||
Reference in New Issue
Block a user