chore: bump version #37
1 changed files with 30 additions and 2 deletions
|
@ -428,11 +428,39 @@ class _CategoriesPieChartState extends State<CategoriesPieChart> {
|
|||
(index) => Padding(
|
||||
padding: const EdgeInsets.all(8),
|
||||
child: Indicator(
|
||||
size: touchedIndex == index ? 18 : 16,
|
||||
size: (touchedIndex != -1 &&
|
||||
touchedIndex ==
|
||||
widget.categories
|
||||
.where(
|
||||
(element) => widget.entries
|
||||
.where(
|
||||
(w) =>
|
||||
w.category.id ==
|
||||
element
|
||||
.id, // TODO: more elegant fix
|
||||
)
|
||||
.isNotEmpty,
|
||||
)
|
||||
.toList()
|
||||
.indexOf(widget.categories[index]))
|
||||
? 18
|
||||
: 16,
|
||||
color: widget.categories[index].color,
|
||||
text: widget.categories[index].name,
|
||||
textStyle: TextStyle(
|
||||
fontWeight: (touchedIndex == index)
|
||||
fontWeight: (touchedIndex != -1 &&
|
||||
touchedIndex ==
|
||||
widget.categories
|
||||
.where(
|
||||
(element) => widget.entries
|
||||
.where(
|
||||
(w) =>
|
||||
w.category.id == element.id,
|
||||
)
|
||||
.isNotEmpty,
|
||||
)
|
||||
.toList()
|
||||
.indexOf(widget.categories[index]))
|
||||
? FontWeight.bold
|
||||
: FontWeight.normal,
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue