-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathmain.dart
executable file
·131 lines (119 loc) · 3.72 KB
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import 'package:animated_tree_view/animated_tree_view.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import '../utils/utils.dart';
const showSnackBar = false;
const expandChildrenOnReady = true;
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Simple Animated Tree Demo',
localizationsDelegates: const [
GlobalCupertinoLocalizations.delegate,
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
],
locale: Locale('en'),
supportedLocales: [Locale('en'), Locale('ar')],
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: const MyHomePage(title: 'Simple Animated Tree Demo'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
MyHomePageState createState() => MyHomePageState();
}
class MyHomePageState extends State<MyHomePage> {
TreeViewController? _controller;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
floatingActionButton: ValueListenableBuilder<bool>(
valueListenable: sampleTree.expansionNotifier,
builder: (context, isExpanded, _) {
return FloatingActionButton.extended(
onPressed: () {
if (sampleTree.isExpanded) {
_controller?.collapseNode(sampleTree);
} else {
_controller?.expandAllChildren(sampleTree);
}
},
label: isExpanded
? const Text("Collapse all")
: const Text("Expand all"),
);
},
),
body: TreeView.simple(
tree: sampleTree,
showRootNode: true,
expansionIndicatorBuilder: (context, node) =>
ChevronIndicator.rightDown(
tree: node,
color: Colors.blue[700],
padding: const EdgeInsets.all(8),
),
indentation: const Indentation(style: IndentStyle.roundJoint),
onItemTap: (item) {
if (kDebugMode) print("Item tapped: ${item.key}");
if (showSnackBar) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text("Item tapped: ${item.key}"),
duration: const Duration(milliseconds: 750),
),
);
}
},
onTreeReady: (controller) {
_controller = controller;
if (expandChildrenOnReady) controller.expandAllChildren(sampleTree);
},
builder: (context, node) => Card(
color: colorMapper[node.level.clamp(0, colorMapper.length - 1)]!,
child: ListTile(
title: Text("Item ${node.level}-${node.key}"),
subtitle: Text('Level ${node.level}'),
),
),
),
);
}
}
final sampleTree = TreeNode.root()
..addAll([
TreeNode(key: "0A")..add(TreeNode(key: "0A1A")),
TreeNode(key: "0C")
..addAll([
TreeNode(key: "0C1A"),
TreeNode(key: "0C1B"),
TreeNode(key: "0C1C")
..addAll([
TreeNode(key: "0C1C2A")
..addAll([
TreeNode(key: "0C1C2A3A"),
TreeNode(key: "0C1C2A3B"),
TreeNode(key: "0C1C2A3C"),
]),
]),
]),
TreeNode(key: "0D"),
TreeNode(key: "0E"),
]);