harlanx

Results 10 comments of harlanx

UI is not being updated I think. I have similar issue and found no workaround to it.

If anyone is still looking for answer. What you need to do is to check the status of the panel. bool isPanelOpen = slidePanelController.panelPosition.round() == 1 Then in your scrollable...

> @harlanx using AlwaysScrollableScrollPhysics() isn't doing it for me. Would you provide some sample code to show how your solution works? > > I also need the CustomScrollView in my...

I've tried @robertohuertasm solution and it works perfectly ```dart class CustomCarouselController extends CarouselControllerImpl { CarouselState? _state; CarouselState? get state => _state; @override set state(CarouselState? state) { _state = state; super.state...

Any workaround for this? I'm getting the same behavior with @unes0111

current workaround is wrapping any fluent button that are inside the ReorderableListView's itemBuilder with Material or FluentTheme widget.

I'm still getting an error on my project using master even without infoBar or trailing provided. I don't know why its being painted during transition even though there are null...

Just an update on this. Turns out that all of the non-Flexible items in the row for `PaneDisplayMode.open` is causing this issue.

I've come up with a new solution, probably better that the first one I suggested. The 12pixels being subtracted is from https://github.com/bdlukaa/fluent_ui/blob/f14c46484cf102942638708653c1129ce10b680e/lib/src/controls/navigation/navigation_view/pane_items.dart#L308 @bdlukaa can you take a look? If you...

https://github.com/bdlukaa/fluent_ui/assets/78299538/37e90fce-58e9-41d9-b30e-8f2fee8e1004 It is reproduceable in the example app. In release mode it is hidden so it doesn't bother me that much.