Hi,
When I replace this HorizontalStackLayout with FlexLayout all data below HorizontalStackLayout (see screenshot 1) disappear why?
I attached 2 all the view xaml. <FlexLayout Direction="Column"
AlignItems="Center"
JustifyContent="SpaceEvenly">
<HorizontalStackLayout Grid.Row="1" Grid.Column="0" HorizontalOptions="Center" VerticalOptions="CenterAndExpand" >
<telerik:RadButton x:Name="totalFiles"
WidthRequest="140"
HeightRequest="80"
FontSize="Micro"
TextColor="Black"
BorderWidth ="2"
BorderColor="Grey"
BackgroundColor="White"
Margin="15"
HorizontalContentAlignment="Center"
Text="{Binding TotalFiles, Mode=TwoWay}"/>
<telerik:RadButton x:Name="pushFiles"
WidthRequest="140"
HeightRequest="80"
FontSize="Micro"
TextColor="Black"
BorderWidth ="2"
BorderColor="Grey"
BackgroundColor="White"
Margin="15"
HorizontalContentAlignment="Center"
Text="{Binding PushedFiles, Mode=TwoWay}"/>
<telerik:RadButton x:Name="pulledFiles"
WidthRequest="140"
HeightRequest="80"
FontSize="Micro"
TextColor="Black"
BorderWidth ="2"
BorderColor="Grey"
BackgroundColor="White"
Margin="15"
HorizontalContentAlignment="Center"
Text="{Binding PulledFiles, Mode=TwoWay}"/>
<telerik:RadButton x:Name="failedFiles"
WidthRequest="140"
HeightRequest="80"
FontSize="Micro"
TextColor="Black"
BorderWidth ="2"
BorderColor="Grey"
BackgroundColor="White"
Margin="15"
HorizontalContentAlignment="Center"
Text="{Binding FailedFiles, Mode=TwoWay}"/>
</HorizontalStackLayout>