Created
April 4, 2019 13:54
-
-
Save MarcioQuimbundo/63d56fd08ea0992bb40aec0c554798f6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/widgets.dart'; | |
main() => runApp( | |
Directionality( | |
textDirection: TextDirection.ltr, | |
child: Center( | |
child: Text( | |
'Olá, Mundo!!!', | |
), | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment