Last active
December 10, 2019 19:20
-
-
Save mukireus/aa684e73237299a1d89fab9945477f7f to your computer and use it in GitHub Desktop.
Launch Url Login Screen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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