Picker not changing
hey y'all, how come this super simple code is not working for me?
If I select a different unit in the Picker, it doesn't change its label
Solution:Jump to solution
changed it to
```swift
Picker("Original Unit", selection: $unitOriginal) {
ForEach(unitList, id: .self) { unit in
Text(unit)...
1 Reply
Solution
changed it to