Adam
Adam

Reputation: 856

Xamarin.Forms - ListView can not load whole ViewCell

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

Answers (1)

EvZ
EvZ

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.

source

More details in official documentation.

Upvotes: 1

Related Questions