Last active
October 31, 2022 03:28
-
-
Save littleironical/bc71a5c865315d7dc91ced7bbf1f3fcf to your computer and use it in GitHub Desktop.
This file contains 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
import 'dart:js' as js; | |
//OR | |
import 'dart:html' as html; | |
onPressed: () { | |
js.context.callMethod('open', ['https://play.google.com/store']); | |
//OR | |
html.window.open('https://play.google.com/store', 'new tab'); | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thx