Hi,
I want to show button at the end of ListView items, not at the end of device. Currently I am having below code which shows Button at the bottom of device and it's always shown & fixed. But I want it at the end of ListView items.
For example,
If ListView has 20 items, button should be shown below that 20th item. One should able to see that button after scrolling down 20 items.
Content = new StackLayout {
Orientation = StackOrientation.Vertical,
Children = {
_listView,
_loadMoreButton
}
};