Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
react-native-single-choice
Advanced tools
Single Choice component for React-native
Install the single-choice component with yarn add react-native-single-choice
or npm install react-native-single-choice --save
.
Import the component in your Javascript file
import React, { useState } from "react";
import { View, Text } from "react-native";
import SingleChoice from "react-native-single-choice";
const App = () => {
const securityMethodOptions = [
{
key: "faceId",
text: "Enable Face ID",
disabled: true
},
{
key: "pin",
text: "Set a pin"
},
{
key: "later",
text: "Set up later"
}
];
const roleOptions = [
{
key: "actor",
text: "Actor"
},
{
key: "director",
text: "Director"
}
];
const [securityMethod, setSecurityMethod] = useState({ method: "pin" });
const [role, setRole] = useState({ role: "actor" });
return (
<View style={{ flex: 1, marginTop: 40, marginLeft: 20 }}>
<Text>React Native Single Choice</Text>
<SingleChoice
options={securityMethodOptions}
defaultValue={securityMethod}
keyName='method'
selectDirection='column'
setValueFunc={setSecurityMethod}
/>
<SingleChoice
options={roleOptions}
defaultValue={role}
keyName='role'
selectDirection='row'
setValueFunc={setRole}
/>
</View>
);
};
export default App;
options
: list options. It's an array of objects. Set disabled to be true if you want disable that option.defaultValue
and keyName
are used to set the default selected option. Look the example to know how to set.selectDirection
: specifies the direction of the flexible items. (row
or column
).setValueFunc
: pass your set state function. It works with React Hooks.Of course! Welcome! I made this package from a simple component in project that I'm working. So welcome to any Pull Requests from you guys.
MIT
FAQs
Radio button component for react-native
We found that react-native-single-choice 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.