Last active
August 17, 2020 14:41
-
-
Save kumar-aakash86/7ccf822fa1a7598146aa9f79823ff4e9 to your computer and use it in GitHub Desktop.
Login page sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file | |
| // for details. All rights reserved. Use of this source code is governed by a | |
| // BSD-style license that can be found in the LICENSE file. | |
| // CODE FROM | |
| // http://www.codeplayon.com/2020/02/simple-flutter-login-screen-ui-example/ | |
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| title: 'Flutter Demo', | |
| debugShowCheckedModeBanner: false, | |
| theme: ThemeData( | |
| primarySwatch: Colors.blue, | |
| ), | |
| home: LoginPage(), | |
| ); | |
| } | |
| } | |
| class LoginPage extends StatefulWidget { | |
| @override | |
| State<StatefulWidget> createState() => new _State(); | |
| } | |
| class _State extends State<LoginPage> { | |
| TextEditingController nameController = TextEditingController(); | |
| TextEditingController passwordController = TextEditingController(); | |
| @override | |
| Widget build(BuildContext context) { | |
| return Scaffold( | |
| appBar: AppBar( | |
| title: Text('Login Screen App'), | |
| ), | |
| body: Padding( | |
| padding: EdgeInsets.all(10), | |
| child: ListView( | |
| children: <Widget>[ | |
| Container( | |
| alignment: Alignment.center, | |
| padding: EdgeInsets.all(10), | |
| child: Text( | |
| 'Login UI', | |
| style: TextStyle( | |
| color: Colors.blue, | |
| fontWeight: FontWeight.w500, | |
| fontSize: 30), | |
| ), | |
| ), | |
| Container( | |
| padding: EdgeInsets.all(10), | |
| child: TextField( | |
| controller: nameController, | |
| decoration: InputDecoration( | |
| border: OutlineInputBorder(), | |
| labelText: 'User Name', | |
| ), | |
| ), | |
| ), | |
| Container( | |
| padding: EdgeInsets.fromLTRB(10, 10, 10, 0), | |
| child: TextField( | |
| obscureText: true, | |
| controller: passwordController, | |
| decoration: InputDecoration( | |
| border: OutlineInputBorder(), | |
| labelText: 'Password', | |
| ), | |
| ), | |
| ), | |
| FlatButton( | |
| onPressed: () { | |
| //forgot password screen | |
| }, | |
| textColor: Colors.blue, | |
| child: Text('Forgot Password'), | |
| ), | |
| Container( | |
| height: 50, | |
| padding: EdgeInsets.fromLTRB(10, 0, 10, 0), | |
| child: RaisedButton( | |
| textColor: Colors.white, | |
| color: Colors.blue, | |
| child: Text('Login'), | |
| onPressed: () { | |
| print(nameController.text); | |
| print(passwordController.text); | |
| }, | |
| )), | |
| Container( | |
| child: Row( | |
| children: <Widget>[ | |
| Text('Does not have account?'), | |
| FlatButton( | |
| textColor: Colors.blue, | |
| child: Text( | |
| 'Sign in', | |
| style: TextStyle(fontSize: 20), | |
| ), | |
| onPressed: () { | |
| //signup screen | |
| }, | |
| ) | |
| ], | |
| mainAxisAlignment: MainAxisAlignment.center, | |
| )) | |
| ], | |
| ))); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment