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
import SwiftUI | |
struct SegmentedPicker: View { | |
@State var selectedValue: PickerExampleValue | |
@Namespace var pickerAnimation | |
@Environment(\.accessibilityReduceMotion) private var reduceMotion | |
var body: some View { | |
HStack { | |
ForEach(PickerExampleValue.allCases) { value in |