url-launcher Questions
2
Solved
I had integrated a mail to scheme in flutter using a url_launcher package. the subject and body were given as query parameters.
final Uri _emailLaunchUri = Uri(
scheme: 'mailto',
path: '[email&#...
Arnaldo asked 29/4, 2021 at 12:59
4
Solved
I'm attempting to use Flutter's url_launcher plugin to open webpages.
When I click a button url_launcher opens a webpage successfully. However, if I then navigate back by swiping left, or using the...
Bereave asked 13/5, 2023 at 18:5
2
I used url_launcher: ^6.1.0 in my flutter project.
I start to write tests for my widgets, but the part of widgets that used the url_launcher method to launch an URL, not worked properly when runnin...
Discontented asked 27/4, 2022 at 10:0
1
Solved
I'v used url_launcher package.
String query = Uri.encodeComponent(Utils.getSelectedStoreAddress());
var appleUrl = 'maps:q=$query';
var googleUrl = 'https://www.google.com/maps/search/?api=1&qu...
Dumond asked 28/4, 2022 at 7:26
1
Solved
I'm using documentation from url_launcher page: https://pub.dev/packages/url_launcher#android
AndroidManifest.xml:
<queries>
<!-- other intents ... -->
<intent>
<action andr...
Lesbian asked 28/10, 2021 at 9:20
2
Solved
So I know that for android version >= 30 you need to add queries in the manifest, but this didnt do the trick for me.
Im using Android Version 29. I nevertheless added these lines to my manifest...
Amaleta asked 11/1, 2022 at 12:52
1
© 2022 - 2025 — McMap. All rights reserved.