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
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>
Comments are closed.