Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mhijack/bc0cedb1aaeca4bf57e2facf39f272ae to your computer and use it in GitHub Desktop.
Save mhijack/bc0cedb1aaeca4bf57e2facf39f272ae to your computer and use it in GitHub Desktop.
struct ContentView: View {
@State var isNightTime = false
var body: some View {
if isNightTime {
Text("Speaker volume is 50")
} else {
Text("Speaker volume is 100")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment