summaryrefslogtreecommitdiffstats
path: root/ios/Hæ-appen/TabBarView.swift
blob: ed0a89c6b8483a0f4ae6167a93a453697d76d754 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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")
            }
        }
    }
}