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
Is your feature request related to a problem? Please describe.
I tried adding directory tree like data (Infinite nesting maybe) to nested TreeViewItems ,but don't know how.
Flutter does not contain a 'id' or 'class' property and ‘queryselector’ like method to find the specific widget .So I can't continuously add children in TreeViewItem with directory tree like data
Describe the solution you'd like
Make flat data format or tree like data format to treeViewItems.
data format like this
The Widget structure of "items" in TreeView is nested while the data structure is plain.So map method is not the way to go .
This is a directory tree data .So TreeViewSelectionMode.multiple is necessary and I have to load all the data together ,lazy loading is not a way either.
So which method can i find a specific widget with a key?
Is your feature request related to a problem? Please describe.
I tried adding directory tree like data (Infinite nesting maybe) to nested TreeViewItems ,but don't know how.
Flutter does not contain a 'id' or 'class' property and ‘queryselector’ like method to find the specific widget .So I can't continuously add children in TreeViewItem with directory tree like data
Describe the solution you'd like
Make flat data format or tree like data format to treeViewItems.
data format like this
the method should like
Describe alternatives you've considered
Is buildContext.element.visitAncestorElements method a solution for Infinite nesting data to TreeViewItems ?
The text was updated successfully, but these errors were encountered: