@@ -118,7 +118,7 @@ class HomeGoodsItem extends StatelessWidget { | |||||
list.add(TextSpan( | list.add(TextSpan( | ||||
text: goods.goodTitle, | text: goods.goodTitle, | ||||
style: TextStyle( | style: TextStyle( | ||||
fontSize: 15, | |||||
fontSize: 14, | |||||
color: HexColor.fromHex('#333333'), | color: HexColor.fromHex('#333333'), | ||||
fontWeight: style?.listStyle?.isTitleBold=="1"? FontWeight.bold:FontWeight.w500), | fontWeight: style?.listStyle?.isTitleBold=="1"? FontWeight.bold:FontWeight.w500), | ||||
)); | )); | ||||
@@ -142,7 +142,7 @@ class HomeGoodsItemSingle extends StatelessWidget { | |||||
} | } | ||||
list.add(TextSpan( | list.add(TextSpan( | ||||
text: goods.goodTitle, | 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( | return RichText( | ||||
maxLines: 2, | maxLines: 2, | ||||
@@ -15,10 +15,10 @@ class TeamListFansBloc extends Bloc<TeamListFansEvent, TeamListFansState> { | |||||
TeamListFansRepository repository; | TeamListFansRepository repository; | ||||
TeamListFansBloc(this.repository) : super(null); | |||||
TeamListFansBloc(this.repository) : super(TeamListFansInitial()); | |||||
@override | |||||
TeamListFansState get initialState => TeamListFansInitial(); | |||||
// @override | |||||
// TeamListFansState get initialState => TeamListFansInitial(); | |||||
@override | @override | ||||
Stream<TeamListFansState> mapEventToState( | Stream<TeamListFansState> mapEventToState( | ||||