When I add 3 ListView-s(cause I have 3 independent groups) in the same ScrollView so that all elements be visible on scrolling the main page, the listview do not resize to show all elements, neither they scroll. My code is:
<ScrollView>
<StackLayout Spacing="3" Padding="5"
Orientation="Vertical" HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
<!--
Patients en Soins part
-->
<Label x:Name="listTitle" Text="Patients en Soins"
Style="{StaticResource InterSimpleHeaderStyle}" />
<ListView x:Name="intervetionsList" Style="{StaticResource ListViewStyle}"
IsPullToRefreshEnabled="true" />
<!--
Patients en Coordination part
-->
<Label x:Name="patientsEnCoordinationTitle" Text="Patients en Coordination"
Style="{StaticResource InterSimpleHeaderStyle}" />
<ListView x:Name="patientsEnCoordinationList" Style="{StaticResource ListViewStyle}"
IsPullToRefreshEnabled="true" HeightRequest="30" />
<!--
Mes archives part
-->
<Label x:Name="archivesTitle" Text="Mes archives"
Style="{StaticResource InterSimpleHeaderStyle}" />
<ListView x:Name="archivesList" Style="{StaticResource ListViewStyle}"
IsPullToRefreshEnabled="true" HeightRequest="100" />
</StackLayout>
</ScrollView>
Can you help me?