Is there a variant for this picker (SwiftUI) in Je...
# compose
g
Is there a variant for this picker (SwiftUI) in Jetpack compose? I can only find date/time pickers. nothing like this. someone has an idea?
a
If you only need this picker you can copy-paste it from here
g
Thanks i will look into it
n
You could possibly try SegmentedButton
m
I was just about to suggest SegmentedButton but Nick Rout beat me to it. It's in Material Design 3 so you'll need to add a dependency in your `build.gradle.kts`:
Copy code
implementation(compose.material3)
You can see what the default appearance looks like in the Material Design Guide.
👍 2
😄 2