I want to have a stepper to increase/decrease the value in an Entry. I referenced to other posts online but my increment does not work. Do I need to have a code behind for the values to increase in Entry?
xaml
<Entry BindingContext="{x:Reference stepper}" Text="1" />
<Stepper x:Name="stepper" Minimum="1" Maximum="4" Increment="1"/>