Keith Eyre

Results 9 comments of Keith Eyre

@attaullahpro The above library doesn't have the ability to set a custom .gif file as the icon... Does it?

Hey there! The link is an https firebase storage link, I cannot share as it's private I'm afraid. I did notice something though, on iOS the files seem to open...

> Hi @keitheyre, what type of file is the link supposed to open? Does the link open a browser/webview or another app? > > Also, can you confirm if this...

Hey, I have updated the code to the following: ```dart void launchURL(url) async { if (await canLaunchUrlString(url)) { Uri uri = Uri.parse(url); print(url); await launchUrl(url, mode: LaunchMode.externalApplication); } else {...

Hi @danagbemava-nc I have confirmed on my end with our Native Android App that the same links work but we handled it differently within our Android App. We instead check...

> > Actually I found out today that if I use the launch(url_here) rather than launchUrl() it opens and asks to download or open. > > By default I believe...