SPB Git

spb/vrai-prix-ios Public

App iOS native de Vrai-Prix — estimation immobilière transparente pour le Québec (SwiftUI, MapKit, Swift Charts)

Swift 100%
669 B · 23 lines swift
Raw Blame History
1// Auteur : Simon-Pierre Boucher — contact@spboucher.ai2// Racine : trois onglets — Estimer (recherche), Manuelle, À propos.3import SwiftUI45struct RootView: View {6    var body: some View {7        TabView {8            SearchView()9                .tabItem { Label("Estimer", systemImage: "magnifyingglass") }10            MapSearchView()11                .tabItem { Label("Carte", systemImage: "map") }12            ManualView()13                .tabItem { Label("Manuelle", systemImage: "slider.horizontal.3") }14            AboutView()15                .tabItem { Label("À propos", systemImage: "text.book.closed") }16        }17    }18}1920#Preview {21    RootView()22}23