react-native-number-please
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

Build NPM

React Native Number Please 🙏🏽

Generate react-native pickers with range numbers.

Example

ezgif-3-f565f85e890a

Installing

Add the package to your project

yarn add react-native-number-please
 
npm install -S react-native-number-please

Usage

import React from "react";
import { View, Text } from "react-native";
 
import NumberPlease from "react-native-number-please";
 
const OrderPizza = () => {
  const initialValues = [{ id: "pizza", value: 3 }];
  const [pizzas, setPizzas] = useState(initialValues);
  const pizzaNumbers = [{ id: "pizza", label: "🍕", min: 0, max: 99 }];
 
  return (
    <View>
      <Text>I would like</Text>
      <NumberPlease
        digits={pizzaNumbers}
        values={pizzas}
        onChange={(values) => setPizzas(values)}
      />
    </View>
  );
};
import React from "react";
import { View, Text } from "react-native";
 
import NumberPlease from "react-native-number-please";
 
const ItsYourBirthday = () => {
  const initialBirthday = [
    { id: "day", value: 16 },
    { id: "month", value: 4 },
    { id: "year", value: 1970 },
  ];
 
  const [birthday, setBirtday] = useState(initialBirthday);
 
  const date = [
    { id: "day", label: "", min: 0, max: 31 },
    { id: "month", label: "", min: 0, max: 12 },
    { id: "year", label: "", min: 1900, max: new Date().getFullYear()
  },
 
  return (
    <View>
      <Text>My birthday</Text>
      <NumberPlease
        digits={date}
        values={birthday}
        onChange={(values) => setBirtday(values)}
      />
    </View>
  );
};

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Package Sidebar

Install

npm i react-native-number-please

Weekly Downloads

79

Version

1.0.5

License

MIT

Unpacked Size

49 kB

Total Files

27

Last publish

Collaborators

  • thebiltheory