Skip to content

Instantly share code, notes, and snippets.

@frank06
Last active December 20, 2019 02:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frank06/eddb6cdb56662bf037b1501b60c300da to your computer and use it in GitHub Desktop.
Save frank06/eddb6cdb56662bf037b1501b60c300da to your computer and use it in GitHub Desktop.
import 'package:flutter/widgets.dart';
main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(context) => Center(
child: Text('Hello Flutter!', textDirection: TextDirection.ltr)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment