6.0.1 • Published 1 year ago

@capacitor-community/volume-buttons v6.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Table of Contents

Maintainers

MaintainerGitHubActive
ryaaryaayes

About

This plugins allows to listen for the events fired when the user presses the hardware volume up or down button of the device. An object that contains only one property is passed to the callback - see VolumeButtonsResult. This plugin contains code derived from or inspired by https://github.com/CipherBitCorp/VolumeButtonHandler and https://github.com/thiagobrez/capacitor-volume-buttons plugins.

Features:

  • support receiving events when the volume is max or min (make sure to use disableSystemVolumeHandler on iOS platform - see VolumeButtonsOptions)
  • keep receiving events after the application sent to and returns from the background
  • supports Android and iOS platforms

NOTE: The plugin version 1.0.0 is compatible with Capacitor 5 which requires gradle version 8.0

Plugin versions

Capacitor versionPlugin version
6.x6.x
5.x1.x

Supported Platforms

  • iOS
  • Android

Installation

npm install @capacitor-community/volume-buttons
npx cap sync

API

isWatching()

isWatching() => Promise<GetIsWatchingResult>

Get the watch status of the volume buttons.

Returns: Promise<GetIsWatchingResult>

Since: 1.0.1


watchVolume(...)

watchVolume(options: VolumeButtonsOptions, callback: VolumeButtonsCallback) => Promise<CallbackID>

Set up a watch for he hardware volume buttons changes

ParamType
optionsVolumeButtonsOptions
callbackVolumeButtonsCallback

Returns: Promise<string>

Since: 1.0.0


clearWatch()

clearWatch() => Promise<void>

Clear the existing watch

Since: 1.0.0


Interfaces

GetIsWatchingResult

PropTypeDescriptionSince
valuebooleanIf the volume buttons are being watched.1.0.1

VolumeButtonsOptions

PropTypeDescriptionSince
disableSystemVolumeHandlerbooleanThis parameter can be used to disable the system volume handler (iOS only). If this is true, when up or down volume button is tapped, the system volume will always be reset to either the initial volume (the volume which was current when the volume buttons are started to be tracked/listened) or to 0.05 if the initial volume is less then 0.05 or to 0.95 if the initial volume is greater then 0.95.1.0.0
suppressVolumeIndicatorbooleanThis parameter can be used to suppress/hide the system volume indicator (Android only, it is never shown on iOS already). If this is true, when up or down volume button is tapped, the system volume indicator will not be shown. The default value is false.1.0.2

VolumeButtonsResult

PropTypeDescriptionSince
direction'up' | 'down'This indicates either the volume up or volume down button was pressed.1.0.0

Type Aliases

VolumeButtonsCallback

(result: VolumeButtonsResult, err?: any): void

CallbackID

string

Usage

Add volume button listener in the app

import { VolumeButtons } from '@capacitor-community/volume-buttons';

const options: VolumeButtonsOptions = {};
const callback: VolumeButtonsCallback = (result: VolumeButtonsResult, err?: any) => {
  console.log('result', result);
};
if (this.platform.is('ios')) {
  options.disableSystemVolumeHandler = true;
} else if (this.platform.is('android')) {
  options.suppressVolumeIndicator = true;
}
await VolumeButtons.watchVolume(options, callback);

Remove volume button listener in the app

import { VolumeButtons } from '@capacitor-community/volume-buttons';

await VolumeButtons.clearWatch();
6.0.1

1 year ago

6.0.0

1 year ago

1.0.2

1 year ago

1.0.1

2 years ago

1.0.0

2 years ago