flutter_simple_treeview 2.0.1 copy "flutter_simple_treeview: ^2.0.1" to clipboard
flutter_simple_treeview: ^2.0.1 copied to clipboard

outdated

A widget, that visualises a tree structure, where a node can be any widget.

flutter_simple_treeview #

This widget visualises a tree structure, where a node can be any widget.

Demo #

https://flutter_simple_treeview.codemagic.app

Usage #

                  TreeView(nodes: [
                    TreeNode(content: Text("root1")),
                    TreeNode(
                      content: Text("root2"),
                      children: [
                        TreeNode(content: Text("child21")),
                        TreeNode(content: Text("child22")),
                        TreeNode(
                          content: Text("root23"),
                          children: [
                            TreeNode(content: Text("child231")),
                          ],
                        ),
                      ],
                    ),
                  ]),
190
likes
0
points
5.07k
downloads

Publisher

verified publishergoogle.dev

Weekly Downloads

A widget, that visualises a tree structure, where a node can be any widget.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_simple_treeview