gpt4 book ai didi

flutter - Stepper 中的图标太大

转载 作者:IT王子 更新时间:2023-10-29 07:00:26 25 4
gpt4 key购买 nike

当您在 Stepper 中创建具有 indexeddisabled 以外的 state 的步骤时,图标到达圆圈的边缘,看起来“笨重”。

这已作为问题提出 #16920在 GitHub 上。

最佳答案

图标遵循主题中 iconTheme 属性的大小。作为解决方法,您可以在 MaterialApp.theme 属性中覆盖它,但这会影响所有也使用相同主题的图标,因此您可以将 Stepper 包装在Theme 小部件并覆盖 iconTheme 上的 size:


var theme = Theme.of(context);
主题(
数据:theme.copyWith(iconTheme: theme.iconTheme.copyWith(size: 18.0),
child :步进器(...)
),

关于flutter - Stepper 中的图标太大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51820452/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com