Skip to content

Instantly share code, notes, and snippets.

@sturdysturge
Created July 12, 2020 11:45
Show Gist options
  • Save sturdysturge/4acd0fe6566905d9be2cced69d70e84c to your computer and use it in GitHub Desktop.
Save sturdysturge/4acd0fe6566905d9be2cced69d70e84c to your computer and use it in GitHub Desktop.
RevDoc ToggleTintView
import SwiftUI
struct ToggleTintView: View {
@State var toggleIsOn = true
var body: some View {
VStack {
Toggle(isOn: $toggleIsOn) {
Text("Toggle")
}
Toggle(isOn: $toggleIsOn) {
Text("Toggle")
}
.toggleStyle(SwitchToggleStyle(tint: .red))
}
.padding()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment