direct_call_plus 1.0.0
direct_call_plus: ^1.0.0 copied to clipboard
Simple flutter plugin to call a number directly, without going to phone dialer, from app
direct_call_plus #
A simple plugin to call number directly from app, without going to phone dialer. Permission request is handled by plugin.
Usage #
Add dependency to pubspec.yaml file
direct_call_plus: ^2.1.1
Android #
No need any additional configuration.
iOS #
Add this to your info.plist under dict
<key>LSApplicationQueriesSchemes</key>
<array>
<string>tel</string>
</array>
Example #
import 'package:flutter/material.dart';
import 'package:direct_call_plus/direct_call_plus.dart';
void main() {
runApp(Scaffold(
body: Center(
child: RaisedButton(
onPressed: _callNumber,
child: Text('Call Number'),
),
),
));
}
_callNumber() async{
const number = '08592119XXXX'; //set the number here
bool res = await DirectCallPlus.callNumber(number);
}