【发布时间】:2020-10-24 16:02:29
【问题描述】:
是否可以在 Flutter ThemeData 的 backgroundColor 属性中设置渐变颜色而不是单一颜色?
final ThemeData base = ThemeData.light();
return base.copyWith(
visualDensity: VisualDensity.adaptivePlatformDensity,
textTheme: _texttheme(base.textTheme),
buttonTheme: _buttonTheme(base.buttonTheme),
inputDecorationTheme: _inputDecorationTheme(base.inputDecorationTheme),
bottomAppBarTheme: _bottomAppBarTheme(base.bottomAppBarTheme),
backgroundColor: Colors.blueGrey // gradient color instead of single color
);
【问题讨论】: