This commit is contained in:
Martin Donnelly 2020-02-12 15:07:15 +00:00
parent 95d7012e7c
commit 86d26cc9db
2 changed files with 12 additions and 2 deletions

View File

@ -1,11 +1,12 @@
import 'package:flutter/material.dart';
import 'screens/login_screen.dart';
class App extends StatelessWidget{
Widget build(context) {
return MaterialApp(
title: 'Log me in',
home: Scaffold(
body: Text('Form here'),
body: LoginScreen(),
),
);
}

View File

@ -10,8 +10,17 @@ class LoginScreen extends StatefulWidget{
class LoginScreenState extends State<LoginScreen> {
Widget build() {
Widget build(context) {
return Container(
margin:EdgeInsets.all(20.0),
child: Form(
child: Column(
children:[],
)
),
);
}
}