Created login screen with logo inside
This commit is contained in:
parent
2ba6dbbbc6
commit
5bfafb2101
4 changed files with 32 additions and 10 deletions
|
|
@ -1,19 +1,14 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'widgets/logo.dart';
|
||||
import 'screens/login_screen.dart';
|
||||
|
||||
class App extends StatelessWidget {
|
||||
Widget build(BuildContext context) {
|
||||
return MaterialApp(
|
||||
title: 'Do more',
|
||||
//home: Text('Start'),
|
||||
home: Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text('DO>'),
|
||||
),
|
||||
body: Container(
|
||||
color: Colors.blue,
|
||||
child: Logo(),
|
||||
),
|
||||
home: LoginScreen(),
|
||||
theme: ThemeData(
|
||||
canvasColor: Color.fromRGBO(23, 25, 29, 1.0),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue