Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/visnalize/capacitor-plugin-call

Call number plugin for Capacitor apps
https://github.com/visnalize/capacitor-plugin-call

android capacitor capacitorjs ios java swift

Last synced: 4 days ago
JSON representation

Call number plugin for Capacitor apps

Awesome Lists containing this project

README

        

# capacitor-plugin-call

Call number plugin for Capacitor apps (Capacitor 5 only).

## Supported platforms

- Android
- iOS

## Install

```bash
npm install capacitor-plugin-call
npx cap sync
```

## API

* [`call(...)`](#call)

### call(...)

```typescript
call(options: { number: string; }) => Promise
```

Open the dialer with the given number

| Param | Type |
| ------------- | -------------------------------- |
| **`options`** | { number: string; } |

--------------------