Created
September 10, 2020 19:54
-
-
Save kazimunshimun/be2f1240ccfbf755a597b8216be8c5a2 to your computer and use it in GitHub Desktop.
SwiftUI Circular Slider parts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct ContentView: View { | |
var body: some View { | |
ZStack { | |
Rectangle() | |
.fill(Color.init(red: 34/255, green: 30/255, blue: 47/255)) | |
.edgesIgnoringSafeArea(.all) | |
TemperatureControlView() | |
} | |
} | |
} | |
struct TemperatureControlView: View { | |
var body: some View { | |
ZStack { | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment