Skip to content

Instantly share code, notes, and snippets.

@sbis04
Created September 9, 2020 11:38
Show Gist options
  • Save sbis04/c410f014f2c67833e32910e1b8fcbfd5 to your computer and use it in GitHub Desktop.
Save sbis04/c410f014f2c67833e32910e1b8fcbfd5 to your computer and use it in GitHub Desktop.
InkWell(
onTap: userEmail == null
? () {
showDialog(
context: context,
builder: (context) => AuthDialog(),
);
}
: null,
// ...
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment