
Security News
New CVE Forecasting Tool Predicts 47,000 Disclosures in 2025
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
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
The npm package react-native-reusable-custom-components receives a total of 21 weekly downloads. As such, react-native-reusable-custom-components popularity was classified as not popular.
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.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.