Skip to content

Instantly share code, notes, and snippets.

@fabiojansenbr
Created December 5, 2019 13:43
Show Gist options
  • Save fabiojansenbr/9e3b6293b5e70b631eb0ec3b299872b1 to your computer and use it in GitHub Desktop.
Save fabiojansenbr/9e3b6293b5e70b631eb0ec3b299872b1 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Material App',
home: Scaffold(
appBar: AppBar(
title: Text('Material App Bar'),
),
body: Center(
child: Container(
child: Text('Hello World'),
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment