Sora/Sora/ContentView.swift
cranci1 ee3f21cc57
Some checks are pending
Build and Release IPA / Build IPA (push) Waiting to run
well lets see
2025-03-12 15:13:49 +01:00

32 lines
760 B
Swift

//
// ContentView.swift
// Sora
//
// Created by Francesco on 06/01/25.
//
import SwiftUI
import Kingfisher
struct ContentView: View {
var body: some View {
TabView {
LibraryView()
.tabItem {
Label("Library", systemImage: "books.vertical")
}
DownloadView()
.tabItem {
Label("Downloads", systemImage: "arrow.down.circle.fill")
}
SearchView()
.tabItem {
Label("Search", systemImage: "magnifyingglass")
}
SettingsView()
.tabItem {
Label("Settings", systemImage: "gear")
}
}
}
}