diff options
| author | ivar <i@oiee.no> | 2025-10-20 00:26:34 +0200 |
|---|---|---|
| committer | ivar <i@oiee.no> | 2025-10-20 00:26:34 +0200 |
| commit | a1f0518d0cd123a791adde64f4f11bd8e44276c7 (patch) | |
| tree | 675a7dff8262eea877ec800ff1efe9b92f5d7e7d /ios/Hæ-appen/TabBarView.swift | |
| download | what-a1f0518d0cd123a791adde64f4f11bd8e44276c7.tar.xz what-a1f0518d0cd123a791adde64f4f11bd8e44276c7.zip | |
Initial commit
Diffstat (limited to 'ios/Hæ-appen/TabBarView.swift')
| -rw-r--r-- | ios/Hæ-appen/TabBarView.swift | 22 |
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") + } + } + } +} |
