1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 13:50:32 +05:30
yattee/Shared/ContentView.swift

22 lines
464 B
Swift
Raw Normal View History

2021-06-10 02:21:23 +05:30
import SwiftUI
struct ContentView: View {
var body: some View {
2021-06-11 04:20:10 +05:30
NavigationView {
TabView {
2021-06-11 18:06:26 +05:30
PopularVideosView()
.tabItem { Text("Popular") }
SearchView()
.tabItem { Image(systemName: "magnifyingglass") }
2021-06-11 04:20:10 +05:30
}
}
2021-06-10 02:21:23 +05:30
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}