When I build my project with Xcode 26 the following code makes the stepper decrement option disabled:
stepper.stepValue = 0.5
stepper.value = 1.0
stepper.minimumValue = 0.7
stepper.maximumValue = 4.0
I think the reason for this is that the (value - stepValue) goes bellow the minimumValue. But on all iOS versions before iOS 26 this made the decrement option enabled and it clamped the value to the minimumValue. The same issue can be reproduced for the maximumValue. Does anyone else have the same issue? Do we need to adjust the stepValue based on the current value?