New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-native-wheel-pick

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-wheel-pick

React native wheel picker iOS style with android.

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.2K
decreased by-71.65%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-wheel-pick

React native wheel picker for both iOS and android. (Support DatePicker)

This is not original but inspire by react-native-wheel-datepicker

How to use

npm i react-native-wheel-pick --save
react-native link react-native-wheel-pick

Example code

import { Picker, DatePicker } from 'react-native-wheel-pick';

// use Picker
<Picker
  style={{ backgroundColor: 'white', width: 321, height: 215 }}
  selectedValue='12:15'
  pickerData={['11:30', '11:45', '12:00', '12:15', '12:30', '12:45', '13:00']}
  onValueChange={value => {}}
/>

// use DatePicker
<DatePicker
  style={{ backgroundColor: 'white', width: 321, height: 215 }}
  mode='date'
  onValueChange={val => {}}
/>

Keywords

FAQs

Package last updated on 18 Jun 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc