mirror of
https://github.com/cranci1/Sora.git
synced 2026-03-11 17:45:37 +00:00
31 lines
730 B
Swift
31 lines
730 B
Swift
//
|
|
// ContentView.swift
|
|
// SulfurTV
|
|
//
|
|
// Created by Dominic on 21.04.25.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct RootView: View {
|
|
var body: some View {
|
|
TabView {
|
|
ExploreView()
|
|
.tabItem {
|
|
Label("Explore", systemImage: "star.fill")
|
|
}
|
|
SearchView()
|
|
.tabItem {
|
|
Label("Search", systemImage: "magnifyingglass")
|
|
}
|
|
LibraryView()
|
|
.tabItem {
|
|
Label("Library", systemImage: "books.vertical.fill")
|
|
}
|
|
SettingsView()
|
|
.tabItem {
|
|
Label("Settings", systemImage: "gear")
|
|
}
|
|
}
|
|
}
|
|
}
|