summaryrefslogtreecommitdiffstats
path: root/ios/Hæ-appen/TabBarView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'ios/Hæ-appen/TabBarView.swift')
-rw-r--r--ios/Hæ-appen/TabBarView.swift22
1 files changed, 22 insertions, 0 deletions
diff --git a/ios/Hæ-appen/TabBarView.swift b/ios/Hæ-appen/TabBarView.swift
new file mode 100644
index 0000000..ed0a89c
--- /dev/null
+++ b/ios/Hæ-appen/TabBarView.swift
@@ -0,0 +1,22 @@
+//
+// TabBarView.swift
+// Hæ-appen
+//
+// Created by Ivar Løvlie on 19/10/2025.
+//
+import SwiftUI
+
+struct TabBarView : View {
+ var body: some View {
+ if #available(iOS 26, *) {
+ TabView {
+ Tab("Hææ", systemImage: "house") {
+ MapContentView()
+ }
+ }
+ .tabViewBottomAccessory {
+ Image(systemName: "person.fill")
+ }
+ }
+ }
+}