I'm new to Xamarin.Forms and I started to implement a product screen which contains a Title, a SearchBar, some filtering controls and the main ListView.
Everything works fine, the ListView displays the items and they scroll as you would expect.
My goal is to have the entire screen scroll, not just the ListView item, and the reason is because the top elements occupy a pretty large amount of space.
How would this be possbile to implement in XAML? I tried adding a ScrollView to contain everything but of course there are issues adding a ListView inside a ScrollView.
Thank You.