|
public class MauiCollectionView : TemplatedControl |
The CollectionView was hacked together for the POC to render as a uniform grid, but that does not offer flexibility for handling the variable states that a MAUI CollectionView can be in. As it states, it's "Uniform" so items will end up proportional which is not correct. This would most likely need to be wrapped in a grid layout directly.
Avalonia.Controls.Maui/src/Avalonia.Controls.Maui/Platform/MauiCollectionView.cs
Line 13 in f17f705
The CollectionView was hacked together for the POC to render as a uniform grid, but that does not offer flexibility for handling the variable states that a MAUI CollectionView can be in. As it states, it's "Uniform" so items will end up proportional which is not correct. This would most likely need to be wrapped in a grid layout directly.