小编Abu*_*war的帖子

flutter apply 或 copyWith 方法

我正在尝试在 上应用蓝色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)

您更喜欢哪一种copyWithapply方法?

在图像上预览

flutter

11
推荐指数
2
解决办法
3322
查看次数

标签 统计

flutter ×1