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:
parent
09e8e14fb6
commit
b2fdcdbc4f
3 changed files with 53 additions and 1 deletions
12
lib/src/screens/home_screen.dart
Normal file
12
lib/src/screens/home_screen.dart
Normal 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'),
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue