Xamarin.Forms: ListView inside StackLayout: How to set height?

With the new BindableLayout feature in Xamarin Forms 3.5 you can easily use the ItemsSource on StackPanel.

So, basically you can write something like this:

<StackLayout BindableLayout.ItemsSource="{Binding list}">
    <BindableLayout.ItemTemplate>
        <DataTemplate>
            ...
        </DataTemplate>
    </BindableLayout.ItemTemplate>
</StackLayout>

You can read more about it here: https://blog.xamarin.com/xamarin-forms-3-5-a-little-bindable-love/

Leave a Comment