String xml file in Flutter

后端 未结 7 1874
难免孤独
难免孤独 2021-02-01 15:18

In flutter string text are directly set to the TextField widget like:

new Text(\'Hello,  How are you?\')

Is correct way ? or we ca

7条回答
  •  生来不讨喜
    2021-02-01 15:39

    That is the correct way. In flutter you don't need .xml or .css files to manage your layout/stuff.

    Everything is managed using the dart code. Which makes everything much easier.

提交回复
热议问题