mirror of
https://github.com/cranci1/Sora.git
synced 2026-04-18 23:22:08 +00:00
32 lines
760 B
Swift
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")
|
|
}
|
|
}
|
|
}
|
|
}
|