5 questions
0
votes
2
answers
186
views
Flutter: url_launcher not working on play store release
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 ...
0
votes
1
answer
41
views
Change the cursor to pointer in url_launcher Link widget
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 ...
0
votes
1
answer
74
views
Flutter launchUrl for tel scheme is just opening dialer with the number and not actually dialing the call
I have a flutter app where I want to dial a phone number directly.
But instead of dialing the number, it just opens it on the dialer and I then have to press dial which is not the required behavior.
I ...