In flutter string text are directly set to the TextField widget like:
new Text(\'Hello, How are you?\')
Is correct way ? or we ca
You can use the methods represented in the internationalization sections of the documentation to control both centralized string management and translations (if you need translations)
https://flutter.io/tutorials/internationalization/
It might be overkill for a simple app with only a few strings though.