Skip to content

Instantly share code, notes, and snippets.

@piedcipher
Created January 19, 2020 05:04
Show Gist options
  • Save piedcipher/bace70ea0266eff2c7bb75d075746295 to your computer and use it in GitHub Desktop.
Save piedcipher/bace70ea0266eff2c7bb75d075746295 to your computer and use it in GitHub Desktop.
My Awesome Code - Hello World
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Hello World'),
),
body: Center(
child: Text('Hello World'),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment