
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
react-native-scratch-card
Advanced tools
$ yarn add react-native-scratch-card
or
$ npm install react-native-scratch-card --save
"AndroidManifest.xml"
in "android/app/src/main/"
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.myawesomeapp"
xmlns:tools="http://schemas.android.com/tools" <!-- Add this line -->
...
>
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
tools:replace="android:allowBackup" <!-- Add this line -->
...
$ yarn add react-native-scratch-card
$ react-native link react-native-scratch-card
or
$ npm install react-native-scratch-card --save
$ react-native link react-native-scratch-card
"AndroidManifest.xml"
in "android/app/src/main/"
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.myawesomeapp"
xmlns:tools="http://schemas.android.com/tools" <!-- Add this line -->
...
>
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
tools:replace="android:allowBackup" <!-- Add this line -->
...
android/app/src/main/java/[...]/MainApplication.java
import com.thebylito.RNScratchCardPackage;
to the imports at the top of the filenew RNScratchCardPackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':react-native-scratch-card'
project(':react-native-scratch-card').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-scratch-card/android')
android/app/build.gradle
:
compile project(':react-native-scratch-card')
import React, { Component } from "react";
import { StyleSheet, Text, View, Image, Alert } from "react-native";
import ScratchCard from "react-native-scratch-card";
export default class App extends Component {
state = { color: "red", status: 0 };
render() {
return (
<View style={styles.container}>
<Text>{this.state.status}</Text>
<ScratchCard
brushSize={125}
getPercent={percent => {
this.setState({ status: percent });
}}
onEnd={() => {
Alert.alert("acabou!");
}}
maxPercent={50}
style={{
justifyContent: "center",
alignItems: "center",
width: 400,
height: 400
}}
color={"gray"}
>
<Text style={{ fontSize: 20 }}>Hello World!!!</Text>
</ScratchCard>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: "center",
alignItems: "center",
backgroundColor: "#F5FCFF"
}
});
FAQs
<center> </center>
The npm package react-native-scratch-card receives a total of 7 weekly downloads. As such, react-native-scratch-card popularity was classified as not popular.
We found that react-native-scratch-card 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.