Timothé Larivière

Results 66 comments of Timothé Larivière

Xamarin.Forms doesn't officially run on .NET 6. You could [make it work](https://github.com/fabulousfx/FSharp.Mobile.Templates) but I wouldn't recommend it, especially if you plan to use any other XF NuGet packages, they would...

Yes. Xamarin.Forms only runs on Mono. Xamarin as a whole started to run on .NET (Core) 6.0 starting MAUI, and Microsoft has decided against porting Xamarin.Forms to .NET 6.0

Maybe you can add a AppLinks collection to CustomApplication to be able to use widget collection?

Hmm, actually you can do it without adding a new property to CustomApplication. You can create a fake "AppLinks" collection attribute that would direct update Application.AppLinks.Register/Deregister (see NavigationPage.Pages for example)

Seems like an issue with Xamarin.Android that was supposed to be fixed, but isn't. https://developercommunity.visualstudio.com/t/breakpoint-not-hit-debugging-xamarin-android-proje/1561025 https://github.com/xamarin/xamarin-android/pull/6660 suggests turning on "Fast Deployment" fixes the problem. I tried and it does indeed...

@babusri Ah looks like one of those few gotchas when dealing with validation in Fabulous. Fabulous will only compare the models to detect changes. If the model does not change,...

That's the idea behind the splitting of Fabulous to Fabulous and Fabulous.XamarinForms. There is an initial support for it already. Some PoCs were made as well: https://github.com/TimLariviere/Fabulous.iOS, https://github.com/TimLariviere/Fabulous.WPF, https://github.com/unoplatform/uno.fabulous. Fabulous.CodeGen...

CodeGen works by going through a series of steps. It has been built to be flexible. If you wish to change one of the steps' behavior, you can swap it...

I can see an `obj` optional parameter for the Create method. This will let you pass any value you need (like a record type holding your `Context` value). Frontends like...

>We can specify required constructor with createCode property, but Fabulous does not pass ViewElement into Create function. I do agree with you that we should change Fabulous to pass the...