minor fix for text style during chip hero
This commit is contained in:
parent
03a83f46fb
commit
3988e8fd3e
1 changed files with 4 additions and 1 deletions
|
@ -201,7 +201,10 @@ class _AvesFilterChipState extends State<AvesFilterChip> {
|
||||||
if (widget.heroType == HeroType.always || widget.heroType == HeroType.onTap && _tapped) {
|
if (widget.heroType == HeroType.always || widget.heroType == HeroType.onTap && _tapped) {
|
||||||
chip = Hero(
|
chip = Hero(
|
||||||
tag: filter,
|
tag: filter,
|
||||||
|
child: DefaultTextStyle(
|
||||||
|
style: TextStyle(),
|
||||||
child: chip,
|
child: chip,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return chip;
|
return chip;
|
||||||
|
|
Loading…
Reference in a new issue