Deploy Ladill Mini / deploy (push) Successful in 35s
Ship full-featured mobile clients with auth, payments, QRs, push notifications, and iOS polish including Figtree typography, app icons, and QR previews. Co-authored-by: Cursor <cursoragent@cursor.com>
25 lines
686 B
Swift
25 lines
686 B
Swift
import SwiftUI
|
|
|
|
struct SplashView: View {
|
|
let onFinish: () -> Void
|
|
|
|
var body: some View {
|
|
ZStack {
|
|
LadillColors.page.ignoresSafeArea()
|
|
VStack(spacing: 16) {
|
|
Image(systemName: "qrcode")
|
|
.font(.system(size: 48, weight: .light))
|
|
.foregroundStyle(LadillColors.indigo)
|
|
Text("Ladill Mini")
|
|
.font(.ladill(size: 28, weight: .semibold))
|
|
.foregroundStyle(LadillColors.ink)
|
|
}
|
|
}
|
|
.onAppear {
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 1.2) {
|
|
onFinish()
|
|
}
|
|
}
|
|
}
|
|
}
|