minor fix for text style during chip hero

This commit is contained in:
Thibault Deckers 2020-11-14 23:51:50 +09:00
parent 03a83f46fb
commit 3988e8fd3e

View file

@ -201,7 +201,10 @@ class _AvesFilterChipState extends State<AvesFilterChip> {
if (widget.heroType == HeroType.always || widget.heroType == HeroType.onTap && _tapped) {
chip = Hero(
tag: filter,
child: chip,
child: DefaultTextStyle(
style: TextStyle(),
child: chip,
),
);
}
return chip;