From 3988e8fd3e8ac1b256f6f3fee98e95885bd7f420 Mon Sep 17 00:00:00 2001 From: Thibault Deckers Date: Sat, 14 Nov 2020 23:51:50 +0900 Subject: [PATCH] minor fix for text style during chip hero --- lib/widgets/common/aves_filter_chip.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/widgets/common/aves_filter_chip.dart b/lib/widgets/common/aves_filter_chip.dart index 8fa097991..314a2a38b 100644 --- a/lib/widgets/common/aves_filter_chip.dart +++ b/lib/widgets/common/aves_filter_chip.dart @@ -201,7 +201,10 @@ class _AvesFilterChipState extends State { if (widget.heroType == HeroType.always || widget.heroType == HeroType.onTap && _tapped) { chip = Hero( tag: filter, - child: chip, + child: DefaultTextStyle( + style: TextStyle(), + child: chip, + ), ); } return chip;