You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, a new ScrollController is created for the ReorderFlex widget in the _AppFlowyBoardContent. We can store ScrollControllers for each group in a map
However this alone won't resolve the issue because ReorderFlex widget reads the scroll position of the nearest scrollable (here is the code) and sets it to the scroll controller. Consequently, the reorder flex of the group (the red ReorderFlex 1 on screenshot) reads the scroll position of the columns' reorder flex (the green ReorderFlex 2 on screenshot), leading to incorrect behavior. When I comment out the line from the referenced code and apply the initial fix, everything works correctly
What I'm asking is, what should I do regarding the second issue? Can I simply remove all the scroll position-related code from the didChangeDependencies method?
Every time setState(), the group card is scrolled to the top
The text was updated successfully, but these errors were encountered: