Skip to content

Instantly share code, notes, and snippets.

@iapicca
Last active October 23, 2019 07:01
Show Gist options
  • Save iapicca/c2eb9b7f17d8bab4af4d10f1b110b17c to your computer and use it in GitHub Desktop.
Save iapicca/c2eb9b7f17d8bab4af4d10f1b110b17c to your computer and use it in GitHub Desktop.
emoji
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