Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 13:58:55 +01:00
parent 4af19165ec
commit 68073add76
12458 changed files with 12350765 additions and 2 deletions

View file

@ -0,0 +1,45 @@
import SwiftUI
/// View for the about information for CoMaps (split up in its own view because of differences between OS versions)
struct AboutCoMapsView: View {
// MARK: Properties
/// The actual view
var body: some View {
VStack(alignment: .leading) {
HStack(alignment: .top, spacing: 12) {
Image("comaps")
.resizable()
.aspectRatio(1, contentMode: .fit)
.frame(maxWidth: 50)
.padding(.top, 6)
VStack(alignment: .leading) {
Text("about_headline")
.font(.headline)
.bold()
VStack(alignment: .leading) {
HStack(alignment: .top, spacing: 4) {
Text(String(""))
Text("about_proposition_1")
}
HStack(alignment: .top, spacing: 4) {
Text(String(""))
Text("about_proposition_2")
}
HStack(alignment: .top, spacing: 4) {
Text(String(""))
Text("about_proposition_3")
}
}
}
}
}
}
}