flexible_tree_view

Creator: coderz1093

Last updated:

Add to Cart

Description:

flexible tree view

Features #

Expand / Collapse the tree nodes;
Show lines of parent -> child nodes;
High flexible to custom node widget

Getting tarted #
dependencies:
flexible_tree_view: ^0.0.5
copied to clipboard
Screen shot #


Usage #
import 'package:flexible_tree_view/flexible_tree_view.dart';

FlexibleTreeView<String>(
nodes: [
TreeNode<String>(
data: 'Cities',
expanded: true,
children: [
TreeNode<String>(data: 'Beijing'),
TreeNode<String>(data: 'Shanghai'),
TreeNode<String>(data: 'Tokyo'),
TreeNode<String>(data: 'Paris')
]
)
],
nodeItemBuilder: (context, node) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 8),
child: Row(
children: [
node.hasNodes
? IconButton(
iconSize: 12,
splashRadius: 16,
padding: EdgeInsets.zero,
constraints:
BoxConstraints.tight(Size(30, 30)),
icon: Icon(node.expanded
? Icons.remove
: Icons.add),
onPressed: () {
node.expanded = !node.expanded;
},
)
: const SizedBox(
width: 12,
),
Text(
node.data,
style: TextStyle(
fontSize: 12,
color: Colors.black,
),
overflow: TextOverflow.ellipsis,
)
],
));
},
)
copied to clipboard
License #
See LICENSE

License

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

Files:

Customer Reviews

There are no reviews.