2019-03-09 20:34:09 -06:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
2019-03-09 21:47:04 -06:00
|
|
|
import '../resources/authService.dart';
|
2019-03-11 23:38:00 -06:00
|
|
|
import '../widgets/task_list_tile.dart';
|
2019-03-09 21:47:04 -06:00
|
|
|
|
2019-03-09 20:34:09 -06:00
|
|
|
class HomeScreen extends StatelessWidget {
|
2019-03-09 21:47:04 -06:00
|
|
|
final _auth = authService;
|
|
|
|
|
|
2019-03-09 20:34:09 -06:00
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return Scaffold(
|
|
|
|
|
appBar: AppBar(
|
|
|
|
|
title: Text('Main Screen'),
|
|
|
|
|
),
|
2019-03-11 23:38:00 -06:00
|
|
|
body: TaskListTile(),
|
2019-03-09 20:34:09 -06:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|