
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
react-native-select-input-ios
Advanced tools
A React Native SelectInput for iOS and Android, which uses a keyboard with a Picker component
A React Native SelectInput for iOS (+Android) which shows the picker as a keyboard.
Installation can be done through npm
or yarn
:
npm install react-native-select-input-ios --save
# or
yarn add react-native-select-input-ios
Import the SelectInput
and wrap you content inside of it.
import React from 'react'
import { View } from 'react-native'
import SelectInput from 'react-native-select-input-ios'
class Component extends React.Component {
render() {
const options = [{ value: 0, label: '0' }]
return (
<View>
<SelectInput value={0} options={options} />
</View>
)
}
}
Check out the properties wiki page to see the list of available props to pass. Also check out the methods wiki page to see the list of callable methods available.
There are some breaking changes introduced in version 2.0, see this migration guide to fix this issues!
Check out the repository and run the example project with the following commands:
# clone and open example project
git clone https://github.com/markuswind/react-native-select-input-ios
cd example
# install dependencies with
npm install
# or
yarn install
# run the project with
react-native run-ios
# or
react-native run-android
FAQs
A React Native SelectInput for iOS and Android, which uses a keyboard with a Picker component
The npm package react-native-select-input-ios receives a total of 182 weekly downloads. As such, react-native-select-input-ios popularity was classified as not popular.
We found that react-native-select-input-ios 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
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.