🎛️Picker

VStack(alignment: .leading, spacing: 20) {
Text("Seasonal Photo").bold()
/// ⭐️ Picker
Picker("Seasonal Photo", selection: $profile.seasonalPhoto) {
ForEach(Profile.Season.allCases) { season in
Text(season.rawValue).tag(season)
}
}
.pickerStyle(.segmented)
}Last updated