mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
23 lines
496 B
Swift
23 lines
496 B
Swift
import SwiftUI
|
|
|
|
struct HomeSettingsButton: View {
|
|
var navigation = NavigationModel.shared
|
|
|
|
var body: some View {
|
|
Button {
|
|
navigation.presentingHomeSettings = true
|
|
} label: {
|
|
Label("Home Settings", systemImage: "gear")
|
|
}
|
|
.font(.caption)
|
|
.imageScale(.small)
|
|
.help("Home Settings")
|
|
}
|
|
}
|
|
|
|
struct HomeSettingsButton_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
HomeSettingsButton()
|
|
}
|
|
}
|