There could be a few reasons why the Flutter URL Launcher plugin is not working on iOS. Here are some things you can try:
url_launcher
dependency in your pubspec.yaml
file and run flutter pub get
to install the package.LSApplicationQueriesSchemes
key to your Info.plist
file, with an array value that includes the URL schemes you want to open. For example:<key>LSApplicationQueriesSchemes</key><array><string>googlechrome</string><string>googlechromes</string><string>http</string><string>https</string></array>
canLaunch
method to check if the URL can be opened, make sure to add the URL schemes to your Info.plist
file as described in step 2.launch
method to open the URL, make sure that the URL you are trying to open is a valid URL and can be opened in a browser on your device.I hope this helps! Let me know if you have any other questions or if these suggestions do not solve the issue.
LESSONS
COURSES
TUTORS
Quick Links
Legal Stuff
Social Media