Currently in .Net MAUI CollectionViews and layouts using BindableLayouts are broken with dynamically sized items.
This is because the InvalidateMeasure event is broken and the Views does not remeassure the contents.
This has supposedly been fixed in a Release Candidate for .NET 9 MAUI, see https://github.com/dotnet/maui/pull/23052
This Greatly affects our ability to create certain types of lists. For example where one item has a text of 1 row and another that occupies 2 rows.
Alternatives are exploring libraries with different implementations of CollectionView, creating our own controls or waiting til this is fixed with workarounds such as generating Grids from code
Currently in .Net MAUI CollectionViews and layouts using BindableLayouts are broken with dynamically sized items.
This is because the InvalidateMeasure event is broken and the Views does not remeassure the contents. This has supposedly been fixed in a Release Candidate for .NET 9 MAUI, see https://github.com/dotnet/maui/pull/23052
This Greatly affects our ability to create certain types of lists. For example where one item has a text of 1 row and another that occupies 2 rows.
Alternatives are exploring libraries with different implementations of CollectionView, creating our own controls or waiting til this is fixed with workarounds such as generating Grids from code