Stepper 中的图标太大

Icons too big in Stepper

当您在 Stepper 中使用 state 而非 indexeddisabled 创建步骤时,图标到达圆圈的边缘,看起来 "clunky".

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

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

上的 size

var theme = Theme.of(context); Theme( data: theme.copyWith(iconTheme: theme.iconTheme.copyWith(size: 18.0), child: Stepper(…) ),