
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
react-native-reusable-custom-components
Advanced tools
Custom and reusable components for react-native
Custom and reusable components for react-native
npm install react-native-reusable-custom-components
OR
yarn add react-native-reusable-custom-components
import { CustomHeader } from "react-native-reusable-custom-components"
<CustomHeader
middleText='Home'
backButton
/>
import { CustomButton, } from "react-native-reusable-custom-components"
<CustomButton
title='Next'
onPress={() => console.log("Pressed")}
/>
import { CustomLoader } from "react-native-reusable-custom-components"
<CustomLoader loading />
import { iPhoneHelp, } from "react-native-reusable-custom-components"
<View
style={{
marginBottom: iPhoneHelp.isIphoneX() ? 20 : 0
}}
/>
import { scale, verticalScale, moderateScale } from "react-native-reusable-custom-components"
<View
style={{
marginHorizontal: moderateScale(15),
marginVertical: verticalScale(20),
padding: scale(3)
}}
/>
import { HelperFunction, } from "react-native-reusable-custom-components"
const checkValidation = async () => {
var email = "test@gmail.com"
var isValidmail = await HelperFunction.isValidEmail(email);
console.log("isValidmail-->", isValidmail);
var password = "Test123@"
var validPassword = await HelperFunction.isValidPassword(password);
console.log("validPassword-->", validPassword);
}
import { OTPTextInput, } from "react-native-reusable-custom-components"
<OTPTextInput
otpCount={4}
onCodeUpdate={(code) => {
console.log("Code is--->", code)
}}
/>
import {CustomModal,CustomButton } from "react-native-reusable-custom-components"
const [visible, setVisible] = useState(false)
<CustomButton
title='Next'
onPress={() => setVisible(true)}
/>
<CustomModal
visible={visible}
onRequestClose={() => setVisible(false)}
/>
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
FAQs
Custom and reusable components for react-native
We found that react-native-reusable-custom-components 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.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.