mirror of
https://github.com/cranci1/Sora.git
synced 2026-03-11 17:45:37 +00:00
32 lines
737 B
Swift
32 lines
737 B
Swift
//
|
|
// ContentView.swift
|
|
// Sora-JS
|
|
//
|
|
// Created by Francesco on 04/01/25.
|
|
//
|
|
|
|
import SwiftUI
|
|
import Kingfisher
|
|
|
|
struct ContentView: View {
|
|
var body: some View {
|
|
TabView {
|
|
HomeView()
|
|
.tabItem {
|
|
Label("Home", systemImage: "house")
|
|
}
|
|
LibraryView()
|
|
.tabItem {
|
|
Label("Library", systemImage: "books.vertical")
|
|
}
|
|
SearchView()
|
|
.tabItem {
|
|
Label("Search", systemImage: "magnifyingglass")
|
|
}
|
|
SettingsView()
|
|
.tabItem {
|
|
Label("Settings", systemImage: "gear")
|
|
}
|
|
}
|
|
}
|
|
}
|