Last active
October 23, 2019 07:01
-
-
Save iapicca/c2eb9b7f17d8bab4af4d10f1b110b17c to your computer and use it in GitHub Desktop.
emoji
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(MyApp()); | |
class MyApp extends StatelessWidget { | |
static const String _message = '🐣'; | |
@override | |
Widget build(BuildContext context) => MaterialApp( | |
home: Scaffold( | |
body:Center( | |
child: Text(_message, | |
style: Theme.of(context).textTheme.display2), | |
),),); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment