How to resizing an Icon / Icon Button in Flutter?(如何在 Flutter 中调整图标/图标按钮的大小?)
本文介绍了如何在 Flutter 中调整图标/图标按钮的大小?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有 2 个问题.
- 如何缩放我们的图标?我的意思不是 Flutter 的默认图标.但是当您更改为图像时.我有一个带有如下图像的图标按钮:
Row(
mainAxisSize: MainAxisSize.max,
children: <Widget>[
IconButton(
icon: new Image.asset("images/IG.png"),
),
IconButton(
icon: new Image.asset("images/Twitter.png"),
),
IconButton(
icon: new Image.asset("images/Fb.png"),
),
],
)
它只有 3 个图标.当我添加更多图标时,它会将布局分解为黄黑色的砖块.如何让它们变小?
its only 3 icons. when I add more icon, its gonna break the layout into bricks yellow-black. how to make them become smaller ?
上面的问题是针对 IconButton 的.如何用图像更改图标?这是代码:
Question above is for IconButton. how to change an Icon with an Image ? here are the code:
图标(Icons.star, color: Colors.red)
如何使用 Image.asset 更改star
"?没有任何对其他链接的引用,仅显示图标.
how to change the 'star
' with Image.asset ?
without any referal to other link, that only show the icon.
推荐答案
Icon
可以使用 size
属性.
Icon(
Icons.radio_button_checked,
size: 12,
),
对于 IconButton
你可以使用
Transform.scale(
scale: 0.5,
child: IconButton(
onPressed: (){},
icon: new Image.asset("images/IG.png"),
),
),
这篇关于如何在 Flutter 中调整图标/图标按钮的大小?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何在 Flutter 中调整图标/图标按钮的大小?
猜你喜欢
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- android 4中的android RadioButton问题 2022-01-01