direct_call_plus 1.0.4 copy "direct_call_plus: ^1.0.4" to clipboard
direct_call_plus: ^1.0.4 copied to clipboard

Plugin to call a number directly, without going to phone dialer.

direct_call_plus #

Plugin to call number directly from your application, without going to phone dialer.

Usage #

Add dependency to pubspec.yaml file

direct_call_plus: ^1.0.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 = '07xxxxxx44'; //set the number here
  bool res = await DirectCallPlus.makeCall(number);
}

Maintainers #

7
likes
160
points
143
downloads

Publisher

unverified uploader

Weekly Downloads

Plugin to call a number directly, without going to phone dialer.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on direct_call_plus