I have a problems with list heigth in iphone

When I test my list in simulator on iphone my list work fine, but I test in iphone 7 plus my list dont it covers all screen.

 <ContentPage.Content>
        <AbsoluteLayout>
            <StackLayout 
                Grid.Row="0"  
                Padding="10"      
                AbsoluteLayout.LayoutBounds="0,0,1,1"  
                AbsoluteLayout.LayoutFlags="All">

                <syncfusion:SfListView x:Name="ltvOrdenes" ItemsSource="{Binding Ordenes}" 
                                       Style="{StaticResource ListView}"
                                       ItemSize="190"
                                       BackgroundColor="#efeeea"
                                       ItemTapped="ListView_ItemTappedOrders">
                    <syncfusion:SfListView.ItemTemplate>
                        <DataTemplate>
                            <Frame>
                                <StackLayout>
                                    <Grid>
                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="Auto"/>
                                            <RowDefinition Height="Auto"/>
                                            <RowDefinition Height="Auto"/>
                                            <RowDefinition Height="Auto"/>
                                            <RowDefinition Height="Auto"/>
                                        </Grid.RowDefinitions>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="Auto" />
                                            <ColumnDefinition Width="Auto" />
                                            <ColumnDefinition Width="*" />
                                        </Grid.ColumnDefinitions>

                                        <!--Titulos-->
                                        <Label Grid.Row="0" Text="Código:" Style="{StaticResource TituloMedium}" FontSize="18.5" FontAttributes="Bold"/>
                                        <Label Grid.Row="1" Text="Fecha:" Style="{StaticResource TituloMedium}" FontSize="18.5" FontAttributes="Bold"/>
                                        <Label Grid.Row="2" Text="Tipo:" Style="{StaticResource TituloMedium}" FontSize="18.5" FontAttributes="Bold"/>
                                        <Label Grid.Row="3" Text="Estado:" Style="{StaticResource TituloMedium}" FontSize="18.5" FontAttributes="Bold"/>

                                        <!--Datos desde el Api-->
                                        <Label Grid.Column="1" Grid.Row="0" Padding="2"  Text="{Binding codigo}" FontSize="17" />
                                        <Label Grid.Column="1" Grid.Row="1" Padding="2" Text="{Binding fecha}"  FontSize="17"/>
                                        <Label Grid.Column="1" Grid.Row="2" Padding="2" Text="{Binding tipo}"  FontSize="17"/>
                                        <Label Grid.Column="1" Grid.Row="3" Padding="2" Text="{Binding tituloEstado}"  FontSize="17"/>

                                    </Grid>
                                </StackLayout>
                            </Frame>
                        </DataTemplate>
                    </syncfusion:SfListView.ItemTemplate>
                </syncfusion:SfListView>
                <sfPager:SfDataPager x:Name="dataPager" AppearanceManager="{StaticResource customAppearance}" Style="{StaticResource dataPager}">
                </sfPager:SfDataPager>

            </StackLayout>

        </AbsoluteLayout>
    </ContentPage.Content>

2 Replies

LN Lakshmi Natarajan Syncfusion Team November 9, 2020 07:12 AM UTC

Hi Cristian, 
 
Thank you for using Syncfusion products. 
 
Due to Covid 19, we are working on remote and all other iPhone devices are in office. So, we are unable to check the issue “ListView height issue in iPhone 7 device” in the mentioned iPhone device. We will let you know about the issue, once we got the device from other teams. 
 
Regards, 
Lakshmi Natarajan 



LN Lakshmi Natarajan Syncfusion Team October 22, 2021 03:54 AM UTC

Hi Cristian, 
 
Thank you for your patience. 
 
We have checked the reported scenario in the iPad 5th Generation iOS 14.4 physical device with latest Syncfusion and Xamarin.Forms versions. Unfortunately, we are unable to reproduce the reported issue on our side. We have attached the tested sample and video in the following link, 
 
 
Please check our sample and let us know if you still facing the same issue? If not, please modify our sample and share the following details which will be helpful for us to check on it and provide you the solution as soon as possible. 
  • Share issue reproducing video
  • Share Syncfusion and Xamarin.Forms versions
 
Regards, 
Lakshmi Natarajan 


Loader.
Up arrow icon