如何创建 TextStyle 变量,是否可能?
典型代码示例
Text(
'Hello World!',
style: TextStyle(
color: Colors.deepPurple,
fontSize: 18.0
),
),
带有生成错误的 TextStyle 变量的代码示例
//объявляем переменную или поле класса
TextStyle _textStyle1;
@override
void initState() {
super.initState();
//инициализируем переменную
_textStyle1 = TextStyle(
color: Colors.deepPurple,
fontSize: 18.0
);
}
Text(
'Hello World!',
//генерируется ошибка
style: _textStyle1,
),
是否可以创建这样的变量?
一切正常......你可以在DartPad中检查它。