I am trying to show full text in label. so I add Nowrap in LineBreakMode but full text don't show.
<widgets:CustomLabel ContentKey="{Binding TotalAmount, Mode=TwoWay}"
Style="{StaticResource NormalLabelStyle}"
TextColor="{StaticResource PrimaryBlueColor}"
Margin="{StaticResource TinyMarginTop}"
LineBreakMode="NoWrap"
MaxLines="1"
HorizontalTextAlignment="Center" />
Text is $0.16.
if I change MaxLines to 2, here

If I show text in one line, How should I fix it?

From the screenshot you shared, we can find that you want to display the string in one line, so you can set the
MaxLinesto1and set the width of the Label wide enough to wrap the string.Of course, you can also set the
HorizontalOptionsto fill the width of the parent view.For example: