Quantcast
Channel: Xamarin.Forms — Xamarin Community Forums
Viewing all articles
Browse latest Browse all 77050

why my listview cant scroll till the end of list items? i have 26 items but cant scroll after 13.

$
0
0

<c:BasePage.Content>

<Grid.RowDefinitions>

</Grid.RowDefinitions>

    <ScrollView>
        <StackLayout>
            <ListView HorizontalOptions="FillAndExpand" SelectionMode="None" HasUnevenRows="True" SeparatorVisibility="None" BackgroundColor="Transparent" ItemsSource="{Binding Data}">
                <ListView.ItemTemplate>
                    <DataTemplate>
                        <ViewCell>
                            <Grid >


                            </Grid>
                        </ViewCell>
                    </DataTemplate>
                </ListView.ItemTemplate>
            </ListView>
        </StackLayout>
    </ScrollView>
</Grid>

</c:BasePage.Content>


Viewing all articles
Browse latest Browse all 77050

Trending Articles