I have 3 elements in my content page (Xamarin forms), for instance:
Content = new StackLayout {
HorizontalOptions = LayoutOptions.Fill,
VerticalOptions = LayoutOptions.FillAndExpand,
Children = {segmentGridLayout, indicator, listView}
};
So, my listView is the last in my stack layout. The stack layout fit in the screen without any issue.
But, the I can't see all my content when I scroll down till the end. Does anyone hit the same issue?