Skip to content

Commit f19e2ee

Browse files
author
tensor-programming
committed
Fix launchurl and Add android launcher name
1 parent 2e72feb commit f19e2ee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/list_page.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,10 @@ class ListPage extends StatelessWidget {
112112
// Laucn the steemit/utopian url using the url_launcher package.
113113
_launchUrl(String url) async {
114114
if (await canLaunch(url)) {
115+
print('Launching: $url');
115116
await launch(url);
116117
} else {
117-
throw 'Could not launch $url';
118+
print('Could not launch $url');
118119
}
119120
}
120121
}

0 commit comments

Comments
 (0)