Minor fixes, extract video context menu view

This commit is contained in:
Arkadiusz Fal
2021-06-28 17:27:53 +02:00
parent f7d0e2131c
commit 6d35394ffd
11 changed files with 54 additions and 40 deletions

View File

@@ -3,7 +3,6 @@ import SwiftUI
struct ContentView: View {
@Default(.openChannel) var channel
@StateObject private var profile = Profile()
var body: some View {
NavigationView {
@@ -34,7 +33,6 @@ struct ContentView: View {
.tabItem { Image(systemName: "magnifyingglass") }
.tag(TabSelection.search)
}
.environmentObject(profile)
}
}