Skip to content

Instantly share code, notes, and snippets.

View asarazan's full-sized avatar

Aaron Sarazan asarazan

View GitHub Profile
@asarazan
asarazan / Original.dart
Created June 3, 2017 18:19 — forked from sethladd/Original.dart
Comparing Flutter to what it might look like in Kotlin, Dart.soon, and Dart.wishlist
class TutorialHome extends StatelessWidget {
@override
Widget build(BuildContext context) {
// Scafold is a layout for the major material design widgets.
return new Scaffold(
appBar: new AppBar(
leading: new IconButton(
icon: new Icon(Icons.menu),
tooltip: 'Navigation menu',
onPressed: null,