Added an initial loading screens where the status of the user is checked (logged in or not) and added a dummy home screen to implement the redirectioning of a user in case his logged in already

This commit is contained in:
Mariano Uvalle 2019-03-09 20:34:09 -06:00
parent 09e8e14fb6
commit b2fdcdbc4f
3 changed files with 53 additions and 1 deletions

View file

@ -0,0 +1,12 @@
import 'package:flutter/material.dart';
class HomeScreen extends StatelessWidget {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Main Screen'),
),
body: Text('Tasks go here'),
);
}
}