//
// ContentView.swift
// Testapp
//
// Created by Cairocoders
//
import SwiftUI
struct ContentView: View {
@State private var selection = "Red"
let colors = ["Red", "Green", "Blue", "Black"]
var body: some View {
VStack {
Picker("Select a paint color", selection: $selection) {
ForEach(colors, id: \.self) {
Text($0)
}
}
.pickerStyle(MenuPickerStyle())
Text("Selected color: \(selection)")
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
article
Friday, May 7, 2021
SwiftUI How to let users pick options from a menu
SwiftUI How to let users pick options from a menu
