-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Closed
Labels
P3Issues that are less important to the Flutter projectIssues that are less important to the Flutter projectc: new featureNothing broken; request for a new capabilityNothing broken; request for a new capabilityf: scrollingViewports, list views, slivers, etc.Viewports, list views, slivers, etc.frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.team-frameworkOwned by Framework teamOwned by Framework teamtriaged-frameworkTriaged by Framework teamTriaged by Framework teamwould be a good packageSeparate Flutter package should be made for thisSeparate Flutter package should be made for this
Description
Building a tree-like widget with many children can currently not be done without blocking the main UI thread. It's not possible to use nested ListView in order to get lazy loading because the tree is not necessarily balanced so if an element has a lot of nested children, it will take a significant time to build anyway which means the UI will hang.
Here is an issue showing an example of why it's needed: #30987
Cc @dnfield.
hpoul, baumths, davidmartos96, anhtuan23, tristan-vrt and 1 more
Metadata
Metadata
Assignees
Labels
P3Issues that are less important to the Flutter projectIssues that are less important to the Flutter projectc: new featureNothing broken; request for a new capabilityNothing broken; request for a new capabilityf: scrollingViewports, list views, slivers, etc.Viewports, list views, slivers, etc.frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.team-frameworkOwned by Framework teamOwned by Framework teamtriaged-frameworkTriaged by Framework teamTriaged by Framework teamwould be a good packageSeparate Flutter package should be made for thisSeparate Flutter package should be made for this