Maintaining a Xamarin Forms (5.0.0.2545) Fabulous 1.1.0 app and I think I've been hit with this XF bug. A workaround is mentioned, add await Task.Delay(50) before setting items in the CollectionView. I'm having trouble translating this in a way that works, in the context of a Fabulous 1.1.0 XF app. A simplified example of the page:
View.ContentPage(
title = "Content Page"
content =
View.ScrollView(
View.CollectionView(
items = // ???
)
)
)
What might be the best approach here?