Segmented control in SwiftUI is the equivalent of UISegmentedControl from the UIKit. Its a horizontal bar with multiple partitioned button that are mutually exclusive in terms of control and hence requires unique tags for identification and the segmented control, overall needs to be bound to a state variable.
Picker("< Label string >", selection: $< binding variable name >, content: {
Text("< label of first button >").tag(0)
Text("< label of first button >").tag(1)
Text("< label of first button >").tag(2)