npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

wing-react-native-wheel-picker-android

v2.0.7

Published

Simple Wheel Picker for Android to use with react-native

Downloads

12

Readme

React native wheel picker V2

A simple Wheel Picker for Android (For IOs is used PickerIOS)

Installation

yarn add react-native-wheel-picker-android

Automatic Installation

react-native link react-native-wheel-picker-android

Manual Android Installation

In android/settings.gradle

include ':react-native-wheel-picker-android'
project(':react-native-wheel-picker-android').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-wheel-picker-android/android')

In android/app/build.gradle

dependencies {
    ...
    compile project(':react-native-wheel-picker-android')
}

In android/app/src/main/java/com/PROJECT_NAME/MainApplication.java

@Override
protected List<ReactPackage> getPackages() {
  return Arrays.<ReactPackage>asList(new MainReactPackage(), new WheelPickerPackage());
}

Usage

import {
  WheelPicker,
  TimePicker,
  DatePicker
} from "react-native-wheel-picker-android";
import React, { Component } from "react";
import { AppRegistry, StyleSheet, Text, View, Button } from "react-native";

const wheelPickerData = [
  "sunday",
  "monday",
  "tuesday",
  "wednesday",
  "thursday",
  "friday"
];

class MyPicker extends Component {
  state = {
    selectedItem: 0
  };

  onItemSelected = selectedItem => {
    this.setState({ selectedItem });
  };

  onPress = () => {
    this.setState({ selectedItem: 3 });
  };

  render() {
    return (
      <View style={styles.container}>
        <Button title={"Select third element"} onPress={this.onPress} />
        <Text>Selected position: {this.state.selectedItem}</Text>
        <WheelPicker
          selectedItem={this.state.selectedItem}
          data={wheelPickerData}
          onItemSelected={this.onItemSelected}
        />
      </View>
    );
  }
}

module.exports = MyPicker;

Props

| Prop | Default | Type | Description | | :------------ |:---------------:| :---------------:| :-----| | onItemSelected | - | func | Returns selected position | | data | - | Array<string> | Data array | | isCyclic | false | bool | Make Wheel Picker cyclic | | selectedItemTextColor | black | string | Wheel Picker's selected Item text color | | selectedItemTextSize | 16 | number | Wheel Picker's selected Item text size | | selectedItemTextFontFamily | - | font-family | Wheel Picker's selected Item font | | itemTextColor | grey | string | Wheel Picker's Item Text Color | | itemTextSize | 16 | number | Wheel Picker's Item text size | | itemTextFontFamily | - | font-family | Wheel Picker's Item font | | selectedItem | 0 | number | Current item position | | initPosition | 0 | number | Initial item position | | indicatorColor | black | string | Indicator color | | hideIndicator | - | boolean | Hide indicator | | indicatorWidth | 1 | number | Indicator width | | backgroundColor | transparent | string | Wheel Picker background color |

Time Picker

onTimeSelected = date => {}
...
<TimePicker onTimeSelected={this.onTimeSelected}/>

Props

| Prop | Default | Type | Description | | :------------------- | :--------------: | :-------------: | :-------------------------- | | ...WheelPicker props | - | - | All style WheelPicker props | | initDate | current date | Date | Initial date | | onTimeSelected | - | func | Callback with selected time | | hours | [1,2,3,4...] | Array<string> | Custom hours array | | minutes | [00,05,10,15...] | Array<string> | Custom minutes array | | format24 | false | boolean | Time format |

Date Picker

For IOs DatePickerIOS is used

onDateSelected = date => {}
...
<DatePicker onDateSelected={this.onDateSelected}/>

Props

| Prop | Default | Type | Description | | :-------------------------------------------------------------------------------------- | :--------------: | :-------------: | :--------------------------------------------------- | | DatePickerIOS props | - | - | All DatePickerIOS props (IOS only) | | initDate | current date | Date | Initial date | | onDateSelected | - | func | Callback with selected date | | days | [1,2,3,4...] | Array<string> | Custom days array (Android only) | | hours | [1,2,3,4...] | Array<string> | Custom hours array (Android only) | | minutes | [00,05,10,15...] | Array<string> | Custom minutes array (Android only) | | format24 | false | boolean | Time format (Android only) | | startDate | current date | Date | Min Date (Android only) | | daysCount | 365 | number | Days count to display from start date (Android only) | | hideDate | false | boolean | Hide days picker (Android only) | | hideHours | false | boolean | Hide hours picker (Android only) | | hideMinutes | false | boolean | Hide minutes picker (Android only) | | hideAM | false | boolean | Hide time format picker (Android only) |

Questions or suggestions?

Feel free to open an issue