Skip to content

Instantly share code, notes, and snippets.

@the-dagger
Last active March 1, 2018 20: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 the-dagger/f58e08fd7fe6bb03eff1a16cadd378c8 to your computer and use it in GitHub Desktop.
Save the-dagger/f58e08fd7fe6bb03eff1a16cadd378c8 to your computer and use it in GitHub Desktop.
Flutter
import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
......
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment