小部件与属性在FLUTTER中的值

时间:2019-11-03 14:53:35

标签: flutter dart

我绝对是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 >

     

是否有任何经验法则可以帮助我快速发展?

0 个答案:

没有答案