В Xamarin.Forms, как мне получить страницу с представлением прокрутки, содержащую некоторое представление xaml и динамический список c.
Вот пример того, что я хочу.
<ScrollView Orientation="Vertical"> <!-- TO MAKE WHOLE PAGE SCROLLABLE -->
<StackLayout Orientation="Vertical">
<!-- SOME XAML VIEWS HERE-->
<Frame Margin="8">
###############
</Frame>
<StackLayout Orientation="Vertical">
################
<!-- A DYNAMIC LIST HERE Just like ListView but with dynamic data and without scroll,
just like linear layout in android-->
</StackLayout>
</StackLayout>
</ScrollView>