Skip to content

Instantly share code, notes, and snippets.

@kazimunshimun
Created September 10, 2020 20:00
Show Gist options
  • Save kazimunshimun/6a64cc693a27bb5c03727fb289c74f7d to your computer and use it in GitHub Desktop.
Save kazimunshimun/6a64cc693a27bb5c03727fb289c74f7d to your computer and use it in GitHub Desktop.
struct TemperatureControlView: View {
@State var temperatureValue: CGFloat = 0.0
@State var angleValue: CGFloat = 0.0
let config = Config(minimumValue: 0.0,
maximumValue: 40.0,
totalValue: 40.0,
knobRadius: 15.0,
radius: 125.0)
var body: some View {
ZStack {
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment