Files
AlloVoisinsSwiftUI/AlloVoisinsSwiftUI/Views/Booster/BoosterSubscriptionOptionsView.swift
Victor Bodinaud e9719414e9 🚀 Start Project
2024-10-14 17:02:14 +02:00

48 lines
1.1 KiB
Swift
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// BoosterSubscriptionOptionsView.swift
//
//
// Created by Victor on 19/06/2024.
//
import SwiftUI
struct BoosterSubscriptionOptionsView: View {
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()
}