英文:
Want to add background color to each item of Bottom Navigation Bar in Flutter
问题
我必须创建一个底部导航栏,每个项目都有像下面这样的背景。
答案1
得分: 1
以下是翻译好的内容:
尝试使用类似以下的代码:
Material(
color: Colors.white,
child: Ink(
decoration: const ShapeDecoration(
color: Colors.blue,
shape: RoundedRectangleBorder(),
),
child: IconButton(
icon: const Icon(Icons.android),
color: Colors.white,
onPressed: () {},
),
),
);
这将产生如下按钮的输出:
按钮
这是有关此的文档链接:文档链接
希望这有所帮助
英文:
Try using some code like this:
Material(
color: Colors.white,
child: Ink(
decoration: const ShapeDecoration(
color: Colors.blue,
shape: RoundedRectangleBorder(),
),
child: IconButton(
icon: const Icon(Icons.android),
color: Colors.white,
onPressed: () {},
),
),
);
Which gives an output of this button:
Button
Here is the link to the documentation about this: Link to documentation
Hope this helps
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论