Skip to content

Instantly share code, notes, and snippets.

@timbergus
Last active June 12, 2019 09:54
Show Gist options
  • Save timbergus/adabf456ec380eace05bd79261760ba1 to your computer and use it in GitHub Desktop.
Save timbergus/adabf456ec380eace05bd79261760ba1 to your computer and use it in GitHub Desktop.
logged ? Container() : RaisedButton(
child: Text('Login'),
color: Colors.blue[300],
onPressed: () async {
try {
_user = await _auth.signInWithEmailAndPassword(
email: '[email protected]',
password: 'password',
);
setState(() {
logged = true;
});
} catch (e) {
print(e);
}
},
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment