ubuntu / yaru.dart

Ubuntu Yaru Flutter widgets and themes for building desktop and web applications
https://ubuntu.github.io/yaru.dart/
Mozilla Public License 2.0
179 stars 33 forks source link

fix: Make YaruExpansionPanel build lazily #892

Closed Feichtmeier closed 2 months ago

Feichtmeier commented 2 months ago

This is helps with #814

By default all expansions are toggled but this can be disabled now if wanted, which then does not rebuild the other children. Also the expandables are now wrapped in listview builders instead of a column. If the scrolling needs to be disabled one can pass NeverScrollableScrollPhysics

This does not cover issues that may be in YaruExpandable

with collapseOnExpand: true:

https://github.com/ubuntu/yaru.dart/assets/15329494/ae11bbca-d417-4ba9-a79f-5c16e9bbb401

with collapseOnExpand: false:

https://github.com/ubuntu/yaru.dart/assets/15329494/d04a618b-cb8f-4b61-95f8-5c3fef48be1c

Ref #814