Skip to content

Instantly share code, notes, and snippets.

@yjbanov
Last active May 24, 2017 04:07
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 yjbanov/254073711a5a44b565f51693d1862e0b to your computer and use it in GitHub Desktop.
Save yjbanov/254073711a5a44b565f51693d1862e0b to your computer and use it in GitHub Desktop.
sample flutter counter app
import 'package:flutter/widgets.dart';
main() {
runApp(new MyApp());
}
class MyApp extends StatelessWidget {
build(_) => new Text('Hello, World!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment