<Label x:Name="mainLabel"
Grid.Row="0"
Grid.Column="0"
FontSize="50"
Grid.ColumnSpan="3"
Grid.RowSpan="2"
VerticalOptions="CenterAndExpand"
HorizontalOptions="CenterAndExpand" />
I am making a phone dialing interface and i have a label that outputs the numbers that are pressed.
Question: How can I make the font size of the label decreases and increases depending on the numbers typed so that it will fit on the label?
I tried googling all day but all the samples are outdated.
I am using the latest version of Xamarin and android API 27
.