Bruno D'Luka
Bruno D'Luka
Seems related to #1002
Because of the way we traverse the pane items and calculate the index, nesting pane items is not allowed. A patch would be appreciated, but I recommend you to read...
I suspect this may be an issue with the indicators
What happens is that we need to render all the pane items to be able to know their position in order to show the indicators. When using a lot of...
This wasn't added yet because it's not a base widget, it's not necessary in most apps. You can achieve a similar behavior with a few packages on pub.dev. Additional resources:...
Hello! Windows UI has guidelines for a [Color Picker control](https://learn.microsoft.com/en-us/windows/apps/design/controls/color-picker), but it is substantially complex to make an implementation for it. Since it is not a core component, I decided...
This is probably because of the following lines: https://github.com/bdlukaa/fluent_ui/blob/9c0840dc33af9d0641285b22dcda4bc553159db3/lib/src/controls/flyouts/content_manager.dart#L63-L72 The sub items doesn't get to know the box size at the very first frame, causing this jitter.
Yeah. To fix this, we'd need to make use of Flutter box system - which is kind of complex. We already do it for other widgets, like `ComboBox`.
Reproducible on the example app as well. Only reproducible on web tho. This looks more like an issue with Flutter Web than with the package itself, since it works on...
`TabView` uses `PageView` under the hood, which doesn't support the automatic usage of `KeepAlive`s, like list view or sliver lists do. It is up to the developer to add it,...