flutter_tree_view
flutter_tree_view copied to clipboard
A Flutter collection of widgets and slivers that helps bringing your hierarchical data to life.
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, __) {...
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...
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...
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...
Everything was great but if I have 4 different levels of lists from mysql database how to implement it
Is there a way to implement drag and drop functionality? Maybe just reordering?
Very nice lib! It would be better if treeNode has generic type to make it easier to access data's fields without cast.
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...