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
undermanifest
.
<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
underdict
.
<key>LSApplicationQueriesSchemes</key>
<array>
<string>tel</string>
</array>
Working
GitHub
Source Code: flutter_make_phone_calls.