flutter_tree_view icon indicating copy to clipboard operation
flutter_tree_view copied to clipboard

A Flutter collection of widgets and slivers that helps bringing your hierarchical data to life.

Results 23 flutter_tree_view issues
Sort by recently updated
recently updated
newest added

Closes #10 Closes #17 Resolves #23 Resolves #28

Failed assertion: line 1979 pos 12: 'hasSize' `PostControllerScope( controller: appController, child: FutureBuilder( future: appController.hello(), builder: (_, __) { if (appController.isInitialized) { return ValueListenableBuilder( valueListenable: appController.treeViewTheme, builder: (_, treeViewTheme, __) {...

**### Documentation pleassssse**

documentation
enhancement

I like the package, but finding the example overly complex to work through and it would benefit from a simpler concrete example that shows how the basic of the package...

enhancement

its a listview.custom inside this widget , when i replace it with column no error occurred but its difficult to scroll to a specific treenode ,to fix that is gonna...

question

Do you have any recommendations on how best to add node sorting when displaying the tree view ? Or is this something you can add so that each node, and...

question

Everything was great but if I have 4 different levels of lists from mysql database how to implement it

question

Is there a way to implement drag and drop functionality? Maybe just reordering?

enhancement
help wanted

Very nice lib! It would be better if treeNode has generic type to make it easier to access data's fields without cast.

enhancement

https://github.com/baumths/flutter_tree_view/assets/40336192/8fb96bc3-18ca-4275-a1c7-b332b5683206 I tweaked `examples/minimal.dart` a little bit to get minimal reproducible code: ```dart import 'package:flutter/material.dart'; import 'package:flutter_fancy_tree_view/flutter_fancy_tree_view.dart'; import 'package:uuid/uuid.dart'; class Node { Node({ required this.title, Iterable? children, }) : children...

bug