XinLei

Vadaski ·

cfug/flutter-cn-codelabs

教程错误

mdc-flutter

Hi neromaycry!
我重新复现了你的反馈,确实和描述一致。抱歉,之前我直接根据代码进行推断,判断有误。
我们下午和一些开发者讨论了这个问题,最终确定这是 Flutter 的一个BUG。在 ThemeData.copyWith 的时候在构造器中声明的属性会丢失 ButtonColor 中的同名属性。具体可参见下面的 issue:

cfug/flutter-cn-codelabs

教程错误

mdc-flutter

感谢你的反馈,我根据你的反馈查看了相关源码。

第一处:

// Used as the default color (fill color) for RaisedButtons. Computing the
    // default for ButtonThemeData for the sake of backwards compatibility.
    buttonColor ??= isDark ? primarySwatch[600] : Colors.grey[300];
 ...