I have a Picker like this:
![enter image description here]()
Im trying to change the style so it pops up like the keyboard does, see example:
![enter image description here]()
This is my code at the moment:
Picker(selection: $profileViewModel.age, label: Text("Age")) { ForEach(0 ..< 100) { number in Text("\(number)") }}.pickerStyle(WheelPickerStyle())