first commit

This commit is contained in:
Victor Bodinaud
2024-10-14 17:00:08 +02:00
parent b810070422
commit 7850943a32
802 changed files with 13180 additions and 24 deletions

View File

@@ -0,0 +1,53 @@
//
// BoosterSubscriptionOptionsView.swift
//
//
// Created by Victor on 19/06/2024.
//
import SwiftUI
struct BoosterSubscriptionOptionsView: View {
init() {
do {
try FontRegistration().registerFonts()
} catch {
}
}
var body: some View {
VStack {
HStack {
SQText("Booster", size: 18, font: .bold)
Spacer()
SQIcon(.xmark, color: .white)
}
.padding(8)
Divider()
VStack {
NavigationLink {
BoosterSubscriptionSelectionScreen()
} label: {
HStack {
SQText("Modifier loption Booster")
Spacer()
SQIcon(.chevron_right)
}
.padding(8)
}
Divider()
HStack {
SQText("Résilier loption Booster")
Spacer()
SQIcon(.chevron_right)
}
.padding([.leading, .trailing, .top], 8)
.padding(.bottom, 16)
}
}
}
}
#Preview {
BoosterSubscriptionManagementScreen()
}