Skip to content

A Flutter Make Phone Calls App || Direct Call || Indirect Call

Notifications You must be signed in to change notification settings

ahmeriqbal7aa/flutter_make_phone_calls

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flutter_make_phone_calls

A new Flutter Make Phone Calls application.

Getting Started

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Do Some Configuration

  • Add these lines to AndroidManifest.xml under manifest.
<queries>
  <!-- If your app makes calls -->
  <intent>
    <action android:name="android.intent.action.DIAL" />
    <data android:scheme="tel" />
  </intent>
</queries>
  • Add these lines to Info.plist under dict.
<key>LSApplicationQueriesSchemes</key>
<array>
  <string>tel</string>
</array>

Working