gpt4 book ai didi

flutter - Flutter是否支持级联样式?

转载 作者:行者123 更新时间:2023-12-03 04:20:48 26 4
gpt4 key购买 nike

我希望能够设置一个默认的文本样式,可以在我的应用程序中使用该样式,然后在特定情况下覆盖该样式的一部分。 React Native支持这一点,Flutter也支持吗?否则,我该如何实现这样的目标?
我希望如何工作的示例:style.dart:

ThemeData appTheme() {
return ThemeData(
...
textTheme: TextTheme(
headline1: TextStyle(fontSize: 26.0, fontWeight: FontWeight.bold),
...
)
)
}
body.dart:
Text('My text here', style: [TextStyle(color: myColorVariable), themeData.textTheme.headline1])
非常感谢!

最佳答案

您可以使用Theme.of(context).textTheme.copyWith()甚至Theme.of(context).textTheme.subtitle1.copyWith()更改特定文本小部件的默认值。

关于flutter - Flutter是否支持级联样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62715851/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com