A Tidy Flutter App to make Phone Calls

This is a simple and neat flutter application that allows the user to call his/her friend having the same flutter app. This is a basic application beginners can use to practice Flutter skills.

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.

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

GitHub

Source Code: flutter_make_phone_calls.

SHARE A Tidy Flutter App to make Phone Calls

You may also like...

Leave a Reply

Your email address will not be published.

Share