How not to display the Label in the SwiftUI Picker.
It is possible to do so by setting labelsHidden
.
参考: How to hide the label of a Picker, Stepper, Toggle, and more using labelsHidden()
This file contains 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 ContentView: View { | |
var pokemons = ["Snorlax", "Pikachu", "Slowpoke", "Meowth"] | |
@State private var selectedPokemon = 0 | |
var body: some View { | |
Picker("Pokemon", selection: $selectedPokemon) { | |
ForEach(0 ..< pokemons.count) { | |
Text(self.pokemons[$0]) | |
} | |
}.pickerStyle(WheelPickerStyle()) | |
.onReceive([self.selectedPokemon].publisher.first()) { (value) in | |
print("selectedPokemon: \(value)") | |
print(self.pokemons[value]) | |
}.labelsHidden() | |
} | |
} | |
struct ContentView_Previews: PreviewProvider { | |
static var previews: some View { | |
ContentView() | |
} | |
} |