Last active
April 28, 2020 08:14
-
-
Save zontyp/8a8ebbb6a921721dcde8b69e1eda7ff9 to your computer and use it in GitHub Desktop.
Flutter Hello World
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( | |
Text( | |
'Hello, world!', | |
textDirection: TextDirection.ltr, | |
), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment