-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathpie_chart_sample3.dart
181 lines (173 loc) · 5.2 KB
/
pie_chart_sample3.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
import 'package:fl_chart_app/presentation/resources/app_resources.dart';
import 'package:fl_chart/fl_chart.dart';
import 'package:flutter/material.dart';
import 'package:flutter_svg/flutter_svg.dart';
class PieChartSample3 extends StatefulWidget {
const PieChartSample3({super.key});
@override
State<StatefulWidget> createState() => PieChartSample3State();
}
class PieChartSample3State extends State {
int touchedIndex = 0;
@override
Widget build(BuildContext context) {
return AspectRatio(
aspectRatio: 1.3,
child: AspectRatio(
aspectRatio: 1,
child: PieChart(
PieChartData(
pieTouchData: PieTouchData(
touchCallback: (FlTouchEvent event, pieTouchResponse) {
setState(() {
if (!event.isInterestedForInteractions ||
pieTouchResponse == null ||
pieTouchResponse.touchedSection == null) {
touchedIndex = -1;
return;
}
touchedIndex =
pieTouchResponse.touchedSection!.touchedSectionIndex;
});
},
),
borderData: FlBorderData(
show: false,
),
sectionsSpace: 0,
centerSpaceRadius: 0,
sections: showingSections(),
),
),
),
);
}
List<PieChartSectionData> showingSections() {
return List.generate(4, (i) {
final isTouched = i == touchedIndex;
final fontSize = isTouched ? 20.0 : 16.0;
final radius = isTouched ? 110.0 : 100.0;
final widgetSize = isTouched ? 55.0 : 40.0;
const shadows = [Shadow(color: Colors.black, blurRadius: 2)];
switch (i) {
case 0:
return PieChartSectionData(
color: AppColors.contentColorBlue,
value: 40,
title: '40%',
radius: radius,
titleStyle: TextStyle(
fontSize: fontSize,
fontWeight: FontWeight.bold,
color: const Color(0xffffffff),
shadows: shadows,
),
badgeWidget: _Badge(
'assets/icons/ophthalmology-svgrepo-com.svg',
size: widgetSize,
borderColor: AppColors.contentColorBlack,
),
badgePositionPercentageOffset: .98,
);
case 1:
return PieChartSectionData(
color: AppColors.contentColorYellow,
value: 30,
title: '30%',
radius: radius,
titleStyle: TextStyle(
fontSize: fontSize,
fontWeight: FontWeight.bold,
color: const Color(0xffffffff),
shadows: shadows,
),
badgeWidget: _Badge(
'assets/icons/librarian-svgrepo-com.svg',
size: widgetSize,
borderColor: AppColors.contentColorBlack,
),
badgePositionPercentageOffset: .98,
);
case 2:
return PieChartSectionData(
color: AppColors.contentColorPurple,
value: 16,
title: '16%',
radius: radius,
titleStyle: TextStyle(
fontSize: fontSize,
fontWeight: FontWeight.bold,
color: const Color(0xffffffff),
shadows: shadows,
),
badgeWidget: _Badge(
'assets/icons/fitness-svgrepo-com.svg',
size: widgetSize,
borderColor: AppColors.contentColorBlack,
),
badgePositionPercentageOffset: .98,
);
case 3:
return PieChartSectionData(
color: AppColors.contentColorGreen,
value: 15,
title: '15%',
radius: radius,
titleStyle: TextStyle(
fontSize: fontSize,
fontWeight: FontWeight.bold,
color: const Color(0xffffffff),
shadows: shadows,
),
badgeWidget: _Badge(
'assets/icons/worker-svgrepo-com.svg',
size: widgetSize,
borderColor: AppColors.contentColorBlack,
),
badgePositionPercentageOffset: .98,
);
default:
throw Exception('Oh no');
}
});
}
}
class _Badge extends StatelessWidget {
const _Badge(
this.svgAsset, {
required this.size,
required this.borderColor,
});
final String svgAsset;
final double size;
final Color borderColor;
@override
Widget build(BuildContext context) {
return AnimatedContainer(
duration: PieChart.defaultDuration,
width: size,
height: size,
decoration: BoxDecoration(
color: Colors.white,
shape: BoxShape.circle,
border: Border.all(
color: borderColor,
width: 2,
),
boxShadow: <BoxShadow>[
BoxShadow(
color: Colors.black.withValues(alpha: .5),
offset: const Offset(3, 3),
blurRadius: 3,
),
],
),
padding: EdgeInsets.all(size * .15),
child: Center(
child: SvgPicture.asset(
svgAsset,
),
),
);
}
}