Greetings everyone, I'm having a problem when my Label binded with the text "displayString" inside the listview stacklayout is too large and breaks the line, expanding the column it belongs, its shown in the image below:
Here is the code of the ListView, have anyone faced this problem before?
<ListView
x:Name="MyListView"
Margin="5,0,0,0"
CachingStrategy="RecycleElement"
HasUnevenRows="True"
IsGroupingEnabled="false"
ItemsSource="{Binding DevicesList, Mode=TwoWay}"
RowHeight="60">
<ListView.Behaviors>
<local1:ListViewTappedItemBehavior Command="{Binding DeviceTappedCommand}" Converter="{StaticResource SelectedItemConverter}" />
</ListView.Behaviors>
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<!--<ViewCell.ContextActions>
<MenuItem
Command="{Binding Path=BindingContext.ShareDeviceCommand, Source={x:Reference Name=MyListView}}"
CommandParameter="{Binding .}"
Text="Compartilhar" />
<MenuItem
Command="{Binding Path=BindingContext.RemoveDeviceCommand, Source={x:Reference Name=MyListView}}"
CommandParameter="{Binding .}"
IsDestructive="True"
Text="Excluir" />
</ViewCell.ContextActions>-->
<ViewCell.View>
<StackLayout HorizontalOptions="StartAndExpand" Orientation="Horizontal">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="4*" />
<ColumnDefinition Width="20*" />
<ColumnDefinition Width="4*" />
<ColumnDefinition Width="4*" />
</Grid.ColumnDefinitions>
<Image
Grid.Column="0"
Aspect="AspectFill"
HeightRequest="50"
Source="{Binding ImageResourceId}"
VerticalOptions="Center" />
<StackLayout Grid.Column="1" Orientation="Vertical">
<Label
FontAttributes="Bold"
FontSize="Large"
Text="{Binding name}"
TextColor="Black" />
<Label
FontSize="Medium"
Text="{Binding displayString}"
TextColor="Black" />
</StackLayout>
<Image
Grid.Column="2"
HeightRequest="50"
HorizontalOptions="EndAndExpand"
Scale="1.2"
Source="acceptShareIcon.png"
VerticalOptions="Center">
<Image.GestureRecognizers>
<TapGestureRecognizer Command="{Binding Path=BindingContext.AcceptShareCommand, Source={x:Reference MyListView}}" CommandParameter="{Binding .}" />
</Image.GestureRecognizers>
</Image>
<Image
Grid.Column="3"
HeightRequest="50"
HorizontalOptions="EndAndExpand"
Scale="1.2"
Source="declineShareIcon.png"
VerticalOptions="Center">
<Image.GestureRecognizers>
<TapGestureRecognizer Command="{Binding Path=BindingContext.DeclineShareCommand, Source={x:Reference MyListView}}" CommandParameter="{Binding .}" />
</Image.GestureRecognizers>
</Image>
</Grid>
</StackLayout>
</ViewCell.View>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>