I\'m using StackLayout and ListView to show some part of a view, but the ListView takes more space than I need, and leaves a blank space between the last row of the list and
Sample layout shows that, you are using ListView inside the ScrollView and ListView have child in different height (HasUnevenRows="True")
This cause a blank space between the last row of the list and ScrollView.
Since you are already added scroll view as root. You can use StackLayout
(BindableLayout)
for the same purpose.