Using Code below causes crash in Android if I just tap inside the textbox. it works fine using + - buttons but trying to change the text onfocus causing crash
<Style x:Key="NumericStyle" TargetType="numeric:SfNumericUpDown">
<Setter Property="HorizontalOptions" Value="FillAndExpand"/>
<Setter Property="VerticalOptions" Value="FillAndExpand"/>
<Setter Property="TextColor" Value="Black"/>
<Setter Property="ParsingMode" Value="Decimal"/>
<Setter Property="Maximum" Value="500"/>
<!--<Setter Property="FontSize" Value="Large"/>-->
<Setter Property="SpinButtonAlignment" Value="Both"/>
</Style>
<numeric:SfNumericUpDown MaximumDecimalDigits="0" Watermark="0" Style="{StaticResource NumericStyle}" x:Name="ageNumericUpDown"
Value="{Binding Age}" />