Skip to content

Instantly share code, notes, and snippets.

View mukireus's full-sized avatar
🏠
Working from home

Muhammet OMER mukireus

🏠
Working from home
View GitHub Profile
@mukireus
mukireus / launch_url_login_screen.dart
Last active December 10, 2019 19:20
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");
}
},
);