Bruno D'Luka

Results 243 comments of Bruno D'Luka

https://learn.microsoft.com/en-us/windows/apps/design/controls/menus#create-a-menu-bar ![](https://learn.microsoft.com/en-us/windows/apps/design/controls/images/menu-bar-submenu.png)

I investigated and I couldn't find the causes of the issue. I would appreciate some help. See also: * #919

What animations, in specific? Can you detail it a little?

For comparison, here are non-latin characters on **Flutter Native** _vs_ **Flutter Web**: ![Non-latin chars on Flutter Native](https://github.com/user-attachments/assets/de1a7b0e-12df-4cdd-87e8-55fee3624c67) ![Non-latin chars on Flutter Web](https://github.com/user-attachments/assets/a7ea883d-4c46-4098-9a24-cdcfca014d5f)

I think the solution to the scrolling behavior is making an infinite scroll list in both dimensions. It is possible with Flutter using a CustomScrollView: https://github.com/flutter/flutter/issues/20608. I am experimenting with...

I changed the scrolling widget from `PageView` to a `CustomScrollView`. With the way a calendar work, with dates overlapping months, a page view isn't the ideal solution here. Instead of...

@Asmitta-01 you should follow the latest specs. The image you provided is from Windows 10.

This would be extremely helpful. All of the video packages don't have a caching mechanism, specially for precaching videos.

This is the function we use to get the system theme color on Linux: https://github.com/bdlukaa/system_theme/blob/4d8f11560560ef0d0d27cc6460c3012bce09ee72/system_theme/linux/system_theme_plugin.cc#L21-L34 Maybe changing `theme_selected_bg_color` to `accent-color` would fix this issue, but there are many distros to...

My app doesn't even build if the dependencies are not found. I only want to use the plugin on Windows and macOS, but not on the Linux platform because I...