Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/visnalize/capacitor-plugin-call
- Owner: Visnalize
- Created: 2024-09-21T06:41:50.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-21T08:58:02.000Z (5 months ago)
- Last Synced: 2025-02-16T19:38:13.184Z (5 days ago)
- Topics: android, capacitor, capacitorjs, ios, java, swift
- Language: Swift
- Homepage:
- Size: 111 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
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; }
|--------------------