Created
May 29, 2021 07:45
-
-
Save vladnicula/df2e147d03211268b6fff39165f7b073 to your computer and use it in GitHub Desktop.
Hello Flutter 01
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/material.dart'; | |
void main() { | |
runApp( | |
Center( | |
child: Text( | |
'Hello, world!', | |
textDirection: TextDirection.ltr, | |
), | |
), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment