2019-02-20 21:39:23 -06:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
2019-02-27 19:09:49 -06:00
|
|
|
class App extends StatelessWidget {
|
2019-02-20 21:39:23 -06:00
|
|
|
Widget build(BuildContext context) {
|
2019-02-22 00:13:06 -06:00
|
|
|
return MaterialApp(
|
|
|
|
|
title: 'Do more',
|
|
|
|
|
//home: Text('Start'),
|
|
|
|
|
home: Scaffold(
|
|
|
|
|
appBar: AppBar(
|
|
|
|
|
title: Text('DO>'),
|
|
|
|
|
),
|
|
|
|
|
body: Text('Tasks'),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
2019-02-26 20:49:53 -06:00
|
|
|
}
|