The Label text was not shown fully in Flex Layout. The only first part of the text was shown. Check the attached screenshot for more details.
Code :
<FlexLayout
HorizontalOptions="Start"
VerticalOptions="Center"
Direction="Row"
Wrap="Wrap"
JustifyContent="Start"
AlignContent="Start"
AlignItems="Start">
<Label Margin="8,0,8,0" Text="Elvis A. Presley" LineBreakMode="NoWrap"/>
<Label Margin="8,0,8,0" Text="John Doee" LineBreakMode="NoWrap"/>
<Label Margin="8,0,8,0" Text="Ryan Gig" LineBreakMode="NoWrap"/>
<Label Margin="8,0,8,0" Text="Rathana Kumar" LineBreakMode="NoWrap"/>
</FlexLayout>
Need to display the full text in the Label
Only the first part of the Label text only shown

Use the below code
<FlexLayout
HorizontalOptions="Start"
VerticalOptions="Center"
Direction="Row"
Wrap="Wrap"
JustifyContent="Start"
AlignContent="Start"
AlignItems="Start">
<Label Margin="8,0,8,0" Text="Elvis A. Presley" LineBreakMode="NoWrap"/>
<Label Margin="8,0,8,0" Text="John Doee" LineBreakMode="NoWrap"/>
<Label Margin="8,0,8,0" Text="Ryan Gig" LineBreakMode="NoWrap"/>
<Label Margin="8,0,8,0" Text="Rathana Kumar" LineBreakMode="NoWrap"/>
</FlexLayout>
I placed that bit of XAML into a Shell template app and the full names display. Do you experience this on all devices, or only specific ones such as the one mentioned? Which version of Forms are you using?
Yes, this issue occurs in all the devices and the devices which we checked are MOTO G4, Samsung S8 and MOTO G5 devices. We used the latest Xamarin forms version 3.5.0.169047.
I have checked with other devices if we adjust the Margin values the same issue came in Lenovo K4, Moto G4, Moto E2 devices.
Workaround - replace Labels with Buttons. Nasty, but fixes the issue for me.