Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
react-native-otp-input-fields-suzan
Advanced tools
This is a component for OTP Input fields.
npm i react-native-otp-input-fields
NOTE: This package uses react-native-reanimated
under the hood for animation. Please Follow the installation process of React Native Reanimated
Below are some examples to use this package
import OTPInput from "react-native-otp-input-fields";
const [OTP, SetOTP] = useState("");
// Maintain a state variable
// Use it like this
<OTPInput onChangeText={SetOTP} value={OTP} />;
import OTPInput from "react-native-otp-input-fields";
const [OTP, SetOTP] = useState("");
// Maintain a state variable
// Use it like this
<OTPInput onChangeText={SetOTP} value={OTP} secureTextEntry={true} />;
import OTPInput from "react-native-otp-input-fields";
const [OTP, SetOTP] = useState("");
// Maintain a state variable
// Use it like this
<OTPInput
onChangeText={SetOTP}
value={OTP}
borderColor="orange"
boxBackgroundColor="dodgerblue"
cursorColor="orange"
digitColor="white"
/>;
import OTPInput from "react-native-otp-input-fields";
const [OTP, SetOTP] = useState("");
// Maintain a state variable
// Use it like this
<OTPInput
onChangeText={SetOTP}
value={OTP}
boxBorderRadius={50}
onlyBorderBottom={false}
boxElevation={10}
/>;
Parameter | required | Default | Description |
---|---|---|---|
value | YES | Maintain a state in parent component and use it as a controlled input | |
onChangeText | YES | the onChangeText function to update the state in parent component | |
count | NO | 6 | Number of digits in the OTP |
autoFocus | NO | false | Whether to autofocus the first field |
removeOnBackspace | NO | true | Whether to clear the previous input while pressing the backspace button on a input field |
onSubmitEditing | NO | function to execute when user presses the done button on keyboard | |
containerWidth | NO | screenWidth | Width of the Input Field Container |
boxHeight | NO | 60 | Height of each input field |
margin | NO | 5 | margin between each input field |
Parameter | required | Default | Description |
---|---|---|---|
secureTextEntry | NO | false | Mask the text input as password field or not |
allowDigitsOnly | NO | false | Allow only digits to be entered in the text input |
digitFontSize | NO | 25 | font size of the text inside input field |
animateDuration | NO | 300ms | Duration for the animation to complete when input field is focused |
cursorColor | NO | black | color of the blinking cursor |
digitColor | NO | black | color of the digit inside the field |
onlyBorderBottom | NO | true | whether to show border around whole box or just the border bottom |
keyboardType | NO | true | type of Keyboard from KeyboardTypeOptions in react-native |
borderBottomWidth | NO | 3 | width for the border bottom of box |
borderColor | NO | black | color for the border of box |
boxElevation | NO | 6 | elevation for the input field box |
maxLength | NO | 1 | Max length of each input field |
inputStyle | NO | styles for the TextInput component | |
boxHeight | NO | 60 | height of each input field |
boxBorderRadius | NO | 0 | border Radius of input field |
boxContainerStyle | NO | styles for the input containers | |
containerStyle | NO | styles for the whole input box container (outer) | |
boxBackgroundColor | NO | white | backround Color of the input fields |
FAQs
React Native Component for OTP Input Fields.
The npm package react-native-otp-input-fields-suzan receives a total of 0 weekly downloads. As such, react-native-otp-input-fields-suzan popularity was classified as not popular.
We found that react-native-otp-input-fields-suzan 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.