我正在尝试在 上应用蓝色Theme.of(context).textTheme.headline6,可以通过两种方式完成
Text(
"Hello",
style: Theme.of(context)
.textTheme
.headline6!
.copyWith(color: Colors.blue),
),
Run Code Online (Sandbox Code Playgroud)
或者
Text(
"Hello",
style: Theme.of(context)
.textTheme
.headline6!
.apply(color: Colors.blue),
),
Run Code Online (Sandbox Code Playgroud)
您更喜欢哪一种copyWith或apply方法?
flutter ×1