Home > Blockchain >  Flutter - redirect to dial
Flutter - redirect to dial

Time:05-23

How can we redirect the user from the app itself to the dial and also fill the dial by the persons number ? for example if number = 073 then open the dial and fill it with 073

CodePudding user response:

You can use the url_launcher package to achieve this.

Install the package from here!, then the url to parse to dial a number will be "tel://{userPhoneNumber}"

  • Related