David
David
@jeromelaban do we have some known issues regarding .net 7.0 yet ?
@agneszitte-nventive the navigation fails as some brushes are missing on Android. In the `Page.Resources` of the the `TaskListPage`, if you replace the brushes by the xaml below, you will be...
About the crash itself, I noticed that the issue is due to the `NavigationBar` here : https://github.com/unoplatform/uno.todo/blob/7a9d6fbe8b34f1298d6f65b2c8900cb3ea06a3cc/src/ToDo.UI/Views/TaskListPage.xaml#L176 Even if I comment the `PathIcon` I get another exception (which also crash...
So thanks to @kazo0 , I found that this is actually caused by https://github.com/unoplatform/Uno.Themes/blob/321b2154bc547e0b3202cca160b2def25d3b3685/src/library/Uno.Material/Styles/Controls/v2/Flyout.xaml#L37 This should be reviewed with design, but IMHO we should not do that as it goes...
@Xiaoy312 @nickrandolph Not sure who is working on it right now :)
Note: In a previous life, I solved this issue by creating attributes `[Constructor]`, `[Initialize]` (right after the constructor, once all members are initialized), `[Dispose]` and `[Finalizer]` and then generating methods...
Nope not yet supported properly
Hummm didn't saw that, interesting case. I assume that since the `out` parameter won't be used, you actually don't need to have a command for that `Foo` method and it...
Ok my suggestion was only to do that: ```csharp public void Foo() => Foo(out _); // Generates the command [Uno.Extensions.Reactive.Commands.Command(false)] public void Foo(out int n) => n = 10; //...