-
Notifications
You must be signed in to change notification settings - Fork 71
Closed
Labels
Description
Describe the bug
TextView height is not set properly based on text length, indeed it change drastically just adding a single character
To Reproduce
I created two ListView with just one char of difference in this way:
<ListView
Margin="0,10,0,0"
HasUnevenRows="true"
ItemTapped="ListView_ItemTapped"
ItemsSource="{Binding DomandaAttuale.Risposte}"
SelectionMode="None"
VerticalOptions="Center">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Grid VerticalOptions="CenterAndExpand">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*" />
<ColumnDefinition Width="9*" />
</Grid.ColumnDefinitions>
<ia:Checkbox
FillColor="{DynamicResource PrimaryColor}"
IsChecked="{Binding Selezionata}"
IsCheckedChanged="Checkbox_IsCheckedChanged"
OutlineColor="{DynamicResource PrimaryColor}"
Shape="Circle" />
<math:TextView
Grid.Column="1"
FontSize="35"
LaTeX="L'insieme dei nu"
TextAlignment="Left"
VerticalOptions="Center" />
</Grid>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>

