Search code examples
flutterurlpermissionslauncher

Do I need to add permission for filling number in dailpad


Do I need to add permission for filling number in dailpad using url launcher in flutter ??? And if yes and how I can add permission in my flutter app and where... Please help me


Solution

  • The error you specified is just warning message,i have two production app with url_launcher even if this message is showing it runs smoothly,Use like this,this is a example for integrate your with api data to ur launcher,no permission need for this.

    Import data like this

    import 'package:url_launcher/url_launcher.dart' as UrlLauncher;
    

    for open whatsapp

    UrlLauncher.launch(("https://wa.me/${"+91" + data.mobile}"));
    

    for open phone app

    UrlLauncher.launch(('tel://${data.mobile}'));