diff --git a/lib/widgets/home/home_goods/home_goods_item.dart b/lib/widgets/home/home_goods/home_goods_item.dart index ae7e44e..a44fa00 100644 --- a/lib/widgets/home/home_goods/home_goods_item.dart +++ b/lib/widgets/home/home_goods/home_goods_item.dart @@ -118,7 +118,7 @@ class HomeGoodsItem extends StatelessWidget { list.add(TextSpan( text: goods.goodTitle, style: TextStyle( - fontSize: 15, + fontSize: 14, color: HexColor.fromHex('#333333'), fontWeight: style?.listStyle?.isTitleBold=="1"? FontWeight.bold:FontWeight.w500), )); diff --git a/lib/widgets/home/home_goods/home_goods_item_single.dart b/lib/widgets/home/home_goods/home_goods_item_single.dart index 204b84d..8dc6b31 100644 --- a/lib/widgets/home/home_goods/home_goods_item_single.dart +++ b/lib/widgets/home/home_goods/home_goods_item_single.dart @@ -142,7 +142,7 @@ class HomeGoodsItemSingle extends StatelessWidget { } list.add(TextSpan( text: goods.goodTitle, - style: TextStyle(fontSize: 15, color: HexColor.fromHex('#333333'), fontWeight: style?.listStyle?.isTitleBold=="1"? FontWeight.bold:FontWeight.w500), + style: TextStyle(fontSize: 14, color: HexColor.fromHex('#333333'), fontWeight: style?.listStyle?.isTitleBold=="1"? FontWeight.bold:FontWeight.w500), )); return RichText( maxLines: 2, diff --git a/lib/widgets/team/fans_list/bloc/team_list_fans_bloc.dart b/lib/widgets/team/fans_list/bloc/team_list_fans_bloc.dart index 0457006..47ff7ba 100644 --- a/lib/widgets/team/fans_list/bloc/team_list_fans_bloc.dart +++ b/lib/widgets/team/fans_list/bloc/team_list_fans_bloc.dart @@ -15,10 +15,10 @@ class TeamListFansBloc extends Bloc { TeamListFansRepository repository; - TeamListFansBloc(this.repository) : super(null); + TeamListFansBloc(this.repository) : super(TeamListFansInitial()); - @override - TeamListFansState get initialState => TeamListFansInitial(); + // @override + // TeamListFansState get initialState => TeamListFansInitial(); @override Stream mapEventToState(