有人能帮我一下吗。我只是新的使用Flutter,我一直在开发这个应用程序的一段时间,遇到了这个问题。我不知道是什么问题the errors of the code
我还没有尝试过任何东西,因为我不知道任何替代代码
Consumer<FavsProvider>(
builder: (_, favs, ch) => Badge(
badgeColor: ColorsConsts.cartBadgeColor,
animationType: BadgeAnimationType.slide,
toAnimate: true,
position: BadgePosition.topEnd(top: 5, end: 7),
badgeContent: Text(
favs.getFavsItems.length.toString(),
style: TextStyle(color: Colors.white),
),
1条答案
按热度按时间hi3rlvi21#
如果你使用的是badges flutter软件包的最新版本。您需要定义BadgeStyle到badgeStyle属性。检查一下这个,告诉我它是否解决了你的问题。