We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e72feb commit f19e2eeCopy full SHA for f19e2ee
lib/list_page.dart
@@ -112,9 +112,10 @@ class ListPage extends StatelessWidget {
112
// Laucn the steemit/utopian url using the url_launcher package.
113
_launchUrl(String url) async {
114
if (await canLaunch(url)) {
115
+ print('Launching: $url');
116
await launch(url);
117
} else {
- throw 'Could not launch $url';
118
+ print('Could not launch $url');
119
}
120
121
0 commit comments