Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
58 views

I have a Flutter app where I want to let the user choose which installed app (Google Maps, Uber, Ola, Apple Maps, etc.) should open for navigation. Currently, my code directly opens Apple Maps on iOS ...
Nikunj Agrawal's user avatar
2 votes
1 answer
168 views

Question description I'm trying to use the url_launcher plugin in my Flutter project. To ensure version compatibility, I set the dependency version to any in pubspec.yml: dependencies: url_launcher: ...
Mingtiao Shiqi's user avatar
0 votes
2 answers
186 views

I'm using the url_launcher package in my flutter application. Testing on debug mode works, and so does release mode. However, when I update my app on the play store, it doesn't work. I have also tried ...
Newton Nthiga's user avatar
0 votes
1 answer
41 views

How can I change the cursor to pointer when a user hovers over the link on web? I have tried MouseRegion and it's not working: import 'package:url_launcher/link.dart'; class UserAgreementText extends ...
ololo's user avatar
  • 2,190
0 votes
1 answer
207 views

Can some one point me on a direction on how to fix this issue? I'm trying to use Flutter with UrlLauncher to launch an URL and on start up I get the following error. Exception Type: EXC_BAD_ACCESS (...
vpo's user avatar
  • 1
1 vote
0 answers
101 views

I am trying to send an image along with a message to a specific phone number on WhatsApp using Flutter's url_launcher package. I am currently able to send plain text messages using the whatsapp://send ...
Nehal Babu's user avatar
10 votes
2 answers
16k views

I'm getting a build error when trying to run my Flutter app on iOS simulator. The error seems to be related to the url_launcher_ios plugin. Error Message: /Users/user/.pub-cache/hosted/pub.dev/...
A_K's user avatar
  • 992
-3 votes
1 answer
114 views

I got this code from Chat GPT, and I already asking many times to Chat GPT why is it error, but it doesnt help at all, and then I tried using the URL Launcher logic from the internet, and it still ...
Andreas's user avatar
  • 11
2 votes
2 answers
782 views

I am developing a Flutter app and using the url_launcher package to open URLs. The app works fine on Android and older versions of iOS, but when I test it on iOS 18 using the simulator, the app hangs ...
Constantin Pinkl's user avatar
3 votes
1 answer
285 views

I am using url_launcher: 6.3.0 in my app, without any direct usage of go_router plugin in it. The code I am using to open a link is: Future<void> _launchUrl(Uri url) async { if (!await ...
Randomize's user avatar
  • 9,153
0 votes
2 answers
301 views

I have a working function to launch sms using url_launcher launchsms(BuildContext context, String phoneNumber) async { try { if (Platform.isAndroid) { String smsuri = 'sms:$...
Shashi kumar S's user avatar
0 votes
1 answer
306 views

When using url_launcher with following code, the token is not taken into account in iOS and Android simulators. It opens the url starting with login page, while with the 'Authorization' header and ...
F. F.'s user avatar
  • 55
0 votes
1 answer
125 views

i develope app using flutter and used url_launcher and for routing used go_router. while developing app and open url then it's work fine, but when build and upload to my server then it's not working ...
Qutbuddin Bohra's user avatar
1 vote
0 answers
744 views

I am currently working on a Flutter app that involves UPI (Unified Payments Interface) payments. In the Android part of the app, I've successfully implemented UPI payments using method channels. I've ...
Abdu Saleem's user avatar
3 votes
1 answer
347 views

I am currently using flutter_widget_from_html_core to view html string that we got from our cms. Additionally, am using url_launcher package to open an anchor tag href. Current approach: HtmlWidget( ...
Khairi's user avatar
  • 66
0 votes
1 answer
385 views

I have used launchUrl(uri); of url_launcher package to open a webview. I want to detect when the user taps to 'Done' or Webview of url_launcher disappears. How can I make it?
Nguyễn Đức Thành's user avatar
0 votes
1 answer
318 views

In my app , I want to open in-app web view instead of browsing external youtube link using url launcher. What should I do? Or Should I use in-app web view plugin instead? This is my code. if (await ...
Gnua Aruht's user avatar
1 vote
1 answer
485 views

so I´ve been working in a webview project for my php code, the thing is, I have some redirects inside the app, like email, phone and others. The problema is it doesnt seen to work been trying to use ...
Vincenzo Mainente's user avatar
0 votes
0 answers
710 views

I'm having a problem launching URLs from my Flutter app on Android emulator. I've scaled it back to a minimal example of my problem is this: class MyApp extends StatelessWidget { const MyApp({super....
Grey's user avatar
  • 419
1 vote
3 answers
6k views

I am developing a mobile application using Flutter, and i have the web version using angular, and the back is using nodejs. For some reason, i want to do the following work flow: When the user is ...
Zohra's user avatar
  • 89
-1 votes
1 answer
63 views

import 'package:url_launcher/url_launcher.dart'; class MapsUtils { MapsUtils._(); //latitude longitude static Future<void> openMapWithPosition( double latitude, double longitude) ...
Moha Nkossie's user avatar
0 votes
0 answers
176 views

I am trying to open some native apps e.g. salesforce to done SSO, And I'm using url_launcher package for that. Its working as expected in Android but not working in iOS. I tried all launchmode. Here ...
Devendra Singh's user avatar
1 vote
0 answers
363 views

My requirement is like, I have to display list of installed application which supports payment as list using flutter and click on the specific application icon will redierct it to application itself. ...
Shivani Sonagara's user avatar
1 vote
1 answer
545 views

Need help. I can't run my app because of this issue. I have reinstalled and tried as much but I can't run...... if I try to run on android, it says the JDK path is invalid and shows. and if I try to ...
Prasish Sharma's user avatar
1 vote
2 answers
961 views

I am trying to launch WhatsApp Business app using Flutter and have written below code: whatsAppBusiness(phone) { print(phone); return launchUrl( Uri.parse( 'whatsapp-business://send?...
Ashirwad Kumar's user avatar