Which SwiftUI-control for inserting numbers?

Which SwiftUI-control would you use for entering numbers? Like for example an employee-salary or a project-budget.
A Stepper or a Wheel-Picker? Or something else?
Which SwithUI control is the most appropriate for the given task?

Personally I would not use either of them. I would use a TextField and set the keyboard type to .decimalPad so that the user can only key in numbers. I think using a Stepper or a wheel Picker would be annoying.

1 Like

Hello Chris,

thanks for the answer.

Currently Iā€™m using a stepper-control.
form

But I you are right. I will change it to a TextField.
Had the assumption myself, that this clicking is annoying. Therefore my question.