如何在flutter中给图标按钮添加徽章?

问题描述 投票:0回答:1

如何在颤振中为图标按钮提供徽章,每当我尝试用徽章包裹图标按钮时。徽章小部件或徽章小部件都不起作用!!

附注我参考了文档并使用了徽章。徽章但仍然不起作用

android flutter frontend icons
1个回答
0
投票
  Badge(
                smallSize: 20,
                label: Text('1'),
                child: IconButton(
                    padding: EdgeInsets.zero,
                    onPressed: () {},
                    icon: Icon(Icons.circle_notifications))),

尝试像这样使用它。 参考:https://dartpad.dev/?id=e75b493dae1287757c5e1d77a0dc73f1

© www.soinside.com 2019 - 2024. All rights reserved.