I'm in the process of converting my iOS app to Android. I have several enums that are used to filter an array. I have Categories (Womens, Mens, Mixed), Leagues and Divisions.
In SwiftUI, I am using a Picker {}.pickerStyle(SegmentedPickerStyle()). I'm looking for a way to do the same in Jetpack Compose. The keywords I've searched for haven't turned up anything.
So, how do I visually select values from a Kotlin enum in Jetpack Compose?

Try the following Jetpack Compose "equivalent":