Last active
June 11, 2020 18:02
-
-
Save rickyngan/5ed443f18fbd82c63e8e61d3efe4f9f3 to your computer and use it in GitHub Desktop.
2020 Jun 13 HoC HK Flutter: 3_hello_widget
This file contains 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