Skip to content

Instantly share code, notes, and snippets.

@timbergus
Last active June 12, 2019 10:12
Show Gist options
  • Save timbergus/8f02bea78be9b2e3073d495b04c0ee19 to your computer and use it in GitHub Desktop.
Save timbergus/8f02bea78be9b2e3073d495b04c0ee19 to your computer and use it in GitHub Desktop.
logged ? RaisedButton(
child: Text('Logout'),
color: Colors.red[300],
onPressed: () async {
try {
await _auth.signOut();
setState(() {
logged = false;
});
} catch (e) {
print(e);
}
},
) : Container(),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment