我绝对是FLUTTER的初学者,而令我感到困惑的是,何时在 属性 中传递 widget 在 property
中传递属性值(someclass.something / some值)void main() => runApp(
MaterialApp(
title: "APPLICATION ON TESTING",
home: Scaffold(
appBar: AppBar(title: Text('This is APP BAR'),),
body: Material(
color: Colors.red,
child: Center(
child: Text(
"HELLO WORLD",
textDirection: TextDirection.ltr,
style: TextStyle(color: Colors.yellowAccent, fontSize: 30.0),
),
),
),
)
)
);
在提供的代码中, textDirection: 是属性,其中 TextDirection.ltr 已通过。在 样式 属性中,我们传递了名为 TextStyle()的 widget >
是否有任何经验法则可以帮助我快速发展?