6.0.3 • Published 11 months ago

@jiggo/jigra-flash v6.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

jigra-flash

Switch the Flashlight / Torch of your device.

Install

npm install @jiggo/jigra-flash
npx jig sync

iOS

Works out of the box

Android

  1. Declare permissions in your app's AndroidManifest.xml file
<!-- Permissions: Allows access to flashlight -->
<uses-permission android:name="android.permission.CAMERA" android:maxSdkVersion="23" />
<uses-permission android:name="android.permission.FLASHLIGHT" />

<!-- Actual Hardware Features Used-->
<uses-feature android:name="android.hardware.camera.flash" android:required="true" />

API

isAvailable()

isAvailable() => any

Checks if flashlight is available

Returns: any


switchOn(...)

switchOn(options: { intensity?: number; }) => any

Turns the flashlight on

ParamType
options{ intensity?: number; }

Returns: any


switchOff()

switchOff() => any

Turns the flashlight off

Returns: any


isSwitchedOn()

isSwitchedOn() => any

Checks if the flashlight is turned on or off

Returns: any


toggle()

toggle() => any

Toggle the flashlight

Returns: any


6.0.3

11 months ago