Created
August 9, 2020 17:10
-
-
Save Medvedoc/efb6e757ba43697795f78a8367c263dd to your computer and use it in GitHub Desktop.
My_tasks_Flutter
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 Flutter', | |
style: TextStyle( | |
fontSize: 40, | |
color: Colors.red, | |
fontWeight: FontWeight.w900, | |
), | |
textDirection: TextDirection.ltr, | |
), | |
), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment