Timothé Larivière

Results 66 comments of Timothé Larivière

@dsyme I like this notation as a general purpose short-hand for lambdas, but in the context of this DSL I would still prefer the parenthesis. `|> _.xxx()` doesn't seem very...

@hartez I'm currently porting [Fabulous](https://github.com/fsprojects/Fabulous) from XF to Maui by providing my own implementation for all the interfaces (ILabel, IButton, etc) without relying on Maui.Controls. (I must admit it is...

For anyone interested, I managed to do a quick workaround that makes the Label always auto-wrap on iOS: ```cs #if __IOS__ public class CustomLabelHandler: Microsoft.Maui.Handlers.LabelHandler { protected override MauiLabel CreatePlatformView()...

@Happypig375 I feel like those templates are not maintained by anyone anymore. I recently started to create and maintain my own F# templates for Xamarin/Maui at https://github.com/fabulousfx/FSharp.Mobile.Templates Right now, it's...

Hi @oscargonzalezdev Yes, of course! Feel free to contribute any improvement to the website. > It would be nice to have a search bar at the top that helps us...

My guess is you would need to look into https://github.com/fsprojects/Fabulous/tree/docs to figure out why the search bar is not included anymore.

Fixed by #19, but waiting for an answer on https://github.com/jamesmontemagno/MediaPlugin/issues/728

@PureWeen I'm not sure to understand how these API changes enable customizing the created view based on the URI being navigated to. `IShellContentCreator` seems only to provide a way to...

I encountered the exact same issue a few days ago, but it only shows up when I build in Release mode. Debug mode doesn't seem to give me any warning....