do_more/lib/src/App.dart

17 lines
331 B
Dart
Raw Normal View History

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) {
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
}