Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当您在 aStepper中创建state除indexedor以外的步骤时disabled,图标会到达圆圈的边缘,看起来“笨拙”。
Stepper
state
indexed
disabled
这已在 GitHub 上作为问题#16920提出。
图标尊重iconTheme主题中属性的大小。作为一种解决方法,您可以在MaterialApp.theme属性中覆盖它,但这会影响所有也使用相同主题的图标,因此您可以将您的小部件包装Stepper在小部件中Theme并覆盖:sizeiconTheme
iconTheme
MaterialApp.theme
Theme
size
var theme = Theme.of(context); Theme( data: theme.copyWith(iconTheme: theme.iconTheme.copyWith(size: 18.0), child: Stepper(…) ),