How to make radio button group in SwiftUI
Issue #592
Use picker with Radio style
Hard to customize
1 | Picker(selection: Binding<Bool>.constant(true), label: EmptyView()) { |
Use custom view
Use contentShape
to make whole button tappable.
Make custom Binding for our enum
1 | struct EnvironmentView: View { |