Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@joaquinacuna
Created October 27, 2020 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joaquinacuna/3fb451aa790bdedadf43bec386bc4dce to your computer and use it in GitHub Desktop.
Save joaquinacuna/3fb451aa790bdedadf43bec386bc4dce to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Login Demo Asap',
theme: new ThemeData(
primarySwatch: Colors.red
),
home: new LoginPage(),
);
}
}
class LoginPage extends StatefulWidget {
@override
State<StatefulWidget> createState() => new _LoginPageState();
}
// Used for controlling whether the user is loggin or creating an account
enum FormType {
login,
register
}
class _LoginPageState extends State<LoginPage> {
final TextEditingController _emailFilter = new TextEditingController();
final TextEditingController _passwordFilter = new TextEditingController();
String _email = "";
String _password = "";
FormType _form = FormType.login; // our default setting is to login, and we should switch to creating an account when the user chooses to
_LoginPageState() {
_emailFilter.addListener(_emailListen);
_passwordFilter.addListener(_passwordListen);
}
void _emailListen() {
if (_emailFilter.text.isEmpty) {
_email = "";
} else {
_email = _emailFilter.text;
}
}
void _passwordListen() {
if (_passwordFilter.text.isEmpty) {
_password = "";
} else {
_password = _passwordFilter.text;
}
}
// Swap in between our two forms, registering and logging in
void _formChange () async {
setState(() {
if (_form == FormType.register) {
_form = FormType.login;
} else {
_form = FormType.register;
}
});
}
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: _buildBar(context),
body: new Container(
padding: EdgeInsets.all(16.0),
child: new Column(
children: <Widget>[
_buildTextFields(),
_buildButtons(),
],
),
),
);
}
Widget _buildBar(BuildContext context) {
return new AppBar(
title: new Text("Simple Login ASAP"),
centerTitle: true,
);
}
Widget _buildTextFields() {
return new Container(
child: new Column(
children: <Widget>[
new Container(
child: new TextField(
controller: _emailFilter,
decoration: new InputDecoration(
labelText: 'Email'
),
),
),
new Container(
child: new TextField(
controller: _passwordFilter,
decoration: new InputDecoration(
labelText: 'Password'
),
obscureText: true,
),
)
],
),
);
}
Widget _buildButtons() {
if (_form == FormType.login) {
return new Container(
child: new Column(
children: <Widget>[
new RaisedButton(
child: new Text('Login'),
onPressed: _loginPressed,
),
new FlatButton(
child: new Text('Dont have an account? Tap here to register.'),
onPressed: _formChange,
),
new FlatButton(
child: new Text('Forgot Password?'),
onPressed: _passwordReset,
)
],
),
);
} else {
return new Container(
child: new Column(
children: <Widget>[
new RaisedButton(
child: new Text('Create an Account'),
onPressed: _createAccountPressed,
),
new FlatButton(
child: new Text('Have an account? Click here to login.'),
onPressed: _formChange,
)
],
),
);
}
}
// These functions can self contain any user auth logic required, they all have access to _email and _password
void _loginPressed () {
print('The user wants to login with $_email and $_password');
}
void _createAccountPressed () {
print('The user wants to create an accoutn with $_email and $_password');
}
void _passwordReset () {
print("The user wants a password reset request sent to $_email");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment