Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created October 9, 2019 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azamsharp/86cc21f16fbf4171772190215b8803de to your computer and use it in GitHub Desktop.
Save azamsharp/86cc21f16fbf4171772190215b8803de to your computer and use it in GitHub Desktop.
struct ContentView: View {
@State private var isOn: Bool = false
var body: some View {
return VStack {
Text(self.isOn ? "🌞" : "🌙")
.font(.custom("Arial", size: 100))
DayNightView(isOn: $isOn)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment