Skip to content

Instantly share code, notes, and snippets.

@mukireus
Last active December 10, 2019 19:20
Show Gist options
  • Save mukireus/aa684e73237299a1d89fab9945477f7f to your computer and use it in GitHub Desktop.
Save mukireus/aa684e73237299a1d89fab9945477f7f to your computer and use it in GitHub Desktop.
Launch Url Login Screen
Widget get _githubCode => InkWell(
child: Text("https://github.com/mukireus/flutter_ui_template_login"),
onTap: () async {
if (await canLaunch("url")) {
await launch("url");
}
},
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment