Reputation: 856
I am having an issue with loading ViewCell in ListView in Xamarin.Forms application.
ViewCell is displayed correctly but only half of it. I tried to scroll down but I couldn't. The ListView ends loading but the ViewCell is designed to continue.
Thank you for your answers !
Upvotes: 0
Views: 137
Reputation: 12169
Take a look on ListView.HasUnevenRows Property:
To automatically size row height to fit content, the developer first sets the HasUnevenRows property to true; and, second, either leaves RowHeight at its default value of -1, or sets it to -1 if it has been changed.
More details in official documentation.
Upvotes: 1