flutter_simple_treeview

Creator: coderz1093

Last updated:

Add to Cart

Description:

flutter simple treeview

flutter_simple_treeview #
This widget visualises a tree structure, where a node can be any widget.
Demo #
https://flutter_simple_treeview.surge.sh/
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")),
],
),
],
),
]),
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.