Skip to content

Instantly share code, notes, and snippets.

@doozie-akshay
Created April 26, 2020 06:25
Show Gist options
  • Save doozie-akshay/a1bf400170a90ab4f70d7eaf0d177bc9 to your computer and use it in GitHub Desktop.
Save doozie-akshay/a1bf400170a90ab4f70d7eaf0d177bc9 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
home: MyHomePage(),
);
}
}
class MyHomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('Expense App')),
body: Center(
child: Text('Widget Playground!'),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment