i need your help i'm trying to make the following UI in xamarin forms.i want the Upload button or image at the end of list . i tried to use collection view with grid item layout .i'm able to show images like this but i can't add upload image at the end like the following . i tried to put upload image/button in the footer of collection view but it appears in bottom of the list not in next to last image . So is there any body who can help me or guide me to achieve this?
We need to keep it always in the last position.
If you want to add more items we need to insert them before this local source:
Items.Insert(Items.Count - 1, "New Items");
Answers
Try to add a local image source at the last position of the items source to display this extra item after populating data:
Here is my simple template:
My point here is to display an extra cell with a local image at the last of the collection view.
@LandLu i tried this
and i got this out put ,the local image is not adding at the end .

We need to keep it always in the last position.
If you want to add more items we need to insert them before this local source:
@LandLu Thank you so much