Hi,
I have a sflistview where I load items with images.
I use ffimageloading. But it's long to load in the listview.
The longest is when I use load more.
I use async method but my screen is freezing some seconds because it loads the new items.
To load my new items I use. I tried begininit but njothing changes.
Device.BeginInvokeOnMainThread(async () =>
{
// ListPlace.DataSource.BeginInit();
ps.ForEach(h => Places.Add(h));
// ListPlace.DataSource.EndInit();
await MapValue.AnimateCamera(newBoundsArea, TimeSpan.FromSeconds(3));
});
How can I improve the perfomrance?