I'm having a weird problem in my current scenario where I have a popupframe which contains a SFLIstView with nummericUpDown control in the items.
Now whenever I only have one item everything works fine, but as soon as I have multiple the app simply crashes and does NOT give me any details
[libc] Fatal signal 11 (SIGSEGV), code 2 (SEGV_ACCERR), fault addr 0xff1d5fcc in tid 11146
I'm using FreshMVVM plus the Rg.Plugins.Popup
```
<listView:SfListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="1" />
<RowDefinition Height="auto" />
</Grid.RowDefinitions>
<Frame
Grid.Row="0"
Margin="0"
HasShadow="True"
HeightRequest="1"
HorizontalOptions="Fill"
OutlineColor="#E4E4E4" />
<StackLayout
Grid.Row="1"
HorizontalOptions="Fill"
Orientation="Vertical"
Spacing="0"
VerticalOptions="Fill">
<StackLayout
HorizontalOptions="FillAndExpand"
Orientation="Vertical"
VerticalOptions="FillAndExpand">
<Label
Style="{DynamicResource ListViewTitleStyle}"
Text="{Binding Name}"
VerticalTextAlignment="Center" />
<numeric:SfNumericUpDown
x:Name="NumericOther"
FontAttribute="Bold"
FontSize="27"
HorizontalOptions="FillAndExpand"
IsVisible="{Binding IsMeasurementOther}"
MaximumDecimalDigits="{Binding MaximumDecimalDigits}"
TextAlignment="End"
TextColor="{DynamicResource TextPrimaryColor}"
ValueChangeMode="OnKeyFocus"
VerticalOptions="Center"
Value="{Binding ScoreValue}">
<numeric:SfNumericUpDown.IncrementButtonSettings>
<numeric:UpDownButtonSettings ButtonFontColor="{DynamicResource TextPrimaryColor}" />
</numeric:SfNumericUpDown.IncrementButtonSettings>
<numeric:SfNumericUpDown.DecrementButtonSettings>
<numeric:UpDownButtonSettings ButtonFontColor="{DynamicResource TextPrimaryColor}" />
</numeric:SfNumericUpDown.DecrementButtonSettings>
</numeric:SfNumericUpDown>
</StackLayout>
</StackLayout>
</Grid>
</ViewCell>
</DataTemplate>
</listView:SfListView.ItemTemplate>
```
I'm using the latest XF 5.0.0.2337 and SF
Just tested and the exact same template works fine in the standard ListView, but I can't use the automatic height functionality...