Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
react-native-nice-learning-torch
Advanced tools
A simple React Native plugin to switch a flashlight on/off.
Currently supports both iOS (>= 8.0) and Android (all versions).
Applies the permission checks on Android API >=25 devices. Below API 25, Android will automatically require the user to accept permissions on install / update.
npm install --save react-native-torch
react-native link react-native-torch
npm install react-native-torch --save
Libraries
➜ Add Files to [your project's name]
node_modules
➜ react-native-torch
and add RCTTorch.xcodeproj
RCTTorch.xcodeproj
➜ Products
folderlibRCTTorch.a
to your project's Build Phases
➜ Link Binary With Libraries
RCTTorch.xcodeproj
in the project navigator and go the Build Settings
tab. Make sure 'All' is toggled on (instead of 'Basic'). In the Search Paths
section, look for Header Search Paths
and make sure it contains both $(SRCROOT)/../../react-native/React
and $(SRCROOT)/../../../React
- mark both as recursive
.import Torch from 'react-native-torch';
Torch.switchState(true); // Turn ON
Torch.switchState(false); // Turn OFF
import Torch from 'react-native-torch';
import { Platform } from 'react-native';
if (Platform.OS === 'ios') {
Torch.switchState(this.isTorchOn);
} else {
const cameraAllowed = await Torch.requestCameraPermission(
'Camera Permissions', // dialog title
'We require camera permissions to use the torch on the back of your phone.' // dialog body
);
if (cameraAllowed) {
Torch.switchState(this.isTorchOn);
}
}
try {
await Torch.switchState(newTorchState);
this.setState({ isTorchOn: newTorchState });
} catch (e) {
ToastAndroid.show(
'We seem to have an issue accessing your torch',
ToastAndroid.SHORT
);
}
NOTE: iOS fails silently, on Android, you can still call without the try/catch block and it won't cause a crash
Android version has flow support.
FAQs
Torch/flashlight for react-native
The npm package react-native-nice-learning-torch receives a total of 2 weekly downloads. As such, react-native-nice-learning-torch popularity was classified as not popular.
We found that react-native-nice-learning-torch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.