In flutter string text are directly set to the TextField widget like:
TextField
new Text(\'Hello, How are you?\')
Is correct way ? or we ca
That is the correct way. In flutter you don't need .xml or .css files to manage your layout/stuff.
.xml
.css
Everything is managed using the dart code. Which makes everything much easier.