Trust-Anchor-Group / NeuroAccessMaui

Contains a Maui App for TAG Neuro-Access.
Other
4 stars 1 forks source link

CollectionViews are broken #112

Closed berggrenmille closed 1 week ago

berggrenmille commented 2 weeks ago

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

PeterWaher commented 2 weeks ago

What views are affected?