Joan Magnet

Results 29 comments of Joan Magnet

@HakanL can you check if this returns the surface type? ```csharp [STAThread] public static void Main(string[] args) { var host = SkiaHostBuilder.Create() .App(() => new App()) .UseX11() .UseLinuxFrameBuffer() .UseMacOS() .UseWindows()...

I agree with @dansiegel , by default my models are basicaly a bunch of properties with no other functionality, maybe some calculated values. Even if you don't generate the Bindable...

@jeromelaban @kazo0 AutosuggestBox shows more than one line. If you keep scrolling, you may get an item with 2 lines. Maybe the visual appearance can be improved by adding margin...

@agneszitte I've added the code you posted, but I'm not sure this is the issue. Initially flyout has a `Width=300`, but when you make the browser window narrow, it automatically...

@agneszitte I tried to apply the same approach as @morning4coffe-dev did on https://github.com/unoplatform/Uno.Gallery/pull/1123, but it still seems a bit purple. ```csharp public AutoSuggestBoxSamplePage() { this.InitializeComponent(); Loaded += AutoSuggestBoxSamplePage_Loaded; } private...

No thank you @morning4coffe-dev , go ahead. I'll take another one. Are you changing the style everytime a new popup appears?

@morning4coffe-dev If I am not wrong `TextChanged` event if fired before the suggestion list is open. ```csharp if (sender.IsSuggestionListOpen) { var popup = VisualTreeHelper.GetOpenPopupsForXamlRoot(XamlRoot).FirstOrDefault(); popup.EnsureXamlControlsResources(true); (popup.Child as Border).EnsureXamlControlsResources(true); } ```...

@morning4coffe-dev Your PR was created with the previous multi-project version, and I'm not sure to be able to send a PR to your PR, do you mind if I generate...