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

react-native-paper-phone-number-input

v1.1.4

Published

A performant phone number input component for react-native-paper with country picker

Downloads

80

Readme

React Native Paper Phone Number Input

npm version License: MIT

🔥 A material design Phone number input component for React Native Paper that has a country code picker with emoji flags for speed and low footprint. Performant and beautiful!

Screenshots

| Theme | Number Input | Country Picker | | ----- | ----------------------------------------------- | ------------------------------------------------ | | Light | Light | Light | | Dark | Dark | Dark |

Features

  • Country code picker with emoji flags.
  • Allows searching for country.
  • Looks and feels consistent with React Native Paper.
  • Allows specifying default country.
  • Allows specifying a list of countries to show on top of the list.
  • Exposes imperative methods to open and close the country code picker.
  • Supports light and dark themes.
  • Works well on Android, iOS and Web.

Installation

Install with your favorite package manager.

Using Yarn:

yarn add react-native-paper-phone-number-input

Using NPM:

npm i react-native-paper-phone-number-input

Usage

Import the PhoneNumberInput component from the library. You can then use it in your application like so:

// App.tsx
import React, { useState } from 'react';
import { PhoneNumberInput, getCountryByCode } from 'react-native-paper-phone-number-input';

export default function App() {
  const [countryCode, setCountryCode] = useState<string>('BD'); // Default country code
  const [phoneNumber, setPhoneNumber] = useState<string>();

  const { name, flag, dialCode } = getCountryByCode(countryCode); // Get country details

  return (
    <PhoneNumberInput
      code={countryCode}
      setCode={setCountryCode}
      phoneNumber={phoneNumber}
      setPhoneNumber={setPhoneNumber}
    />
  );
}

A more complete example can be found in the example directory.

API

PhoneNumberInput

Props

| Prop | Type | Description | Notes | | ----------------- | ------------------------------- | ----------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | | code | string | The country code. | Optional. By default, the country code is set to ## whicch shows a world icon. | | setCode | (code: string) => void | A function that sets the country code. | Required. | | phoneNumber | string | The phone number. | Optional. By default, no phone number is set. | | setPhoneNumber | (phoneNumber: string) => void | A function that sets the phone number. | Required. | | showFirstOnList | string[] | A list of country codes that should be shown on top of the list. | Optional. By default, countries are shown alphabetically. | | ...rest | ...TextInputProps | Any other props that you want to pass to the TextInput component of React Native Paper. | Optional. |

Ref Methods

| Method Name | Description | | -------------------- | ------------------------------- | | openCountryPicker | Opens the country code picker. | | closeCountryPicker | Closes the country code picker. |

CountryPicker

Props

| Prop | Type | Description | Notes | | ------------ | ------------------------ | ----------------------------------------------------------------------------------------- | --------- | | country | string | The country | Optional. | | setCountry | (code: string) => void | A function that sets the country code. | Required. | | ...rest | ...TextInputProps | Any other props that you want to pass to the TextInput component of React Native Paper. | Optional. |

Ref Methods

| Method Name | Description | | -------------------- | -------------------------- | | openCountryPicker | Opens the country picker. | | closeCountryPicker | Closes the country picker. |

getCountryByCode

type CountryWithoutCode = {
  name: string;
  flag: string;
  dialCode: string;
};

const getCountryByCode: (code?: string) => CountryWithoutCode;

Design Decisions/FAQ

How to set the default country?

You can set the default country by setting the code prop. This prop accepts a country code. For example, if you want to set the default country to Bangladesh, you can set the code prop to BD.

Why set the country code instead of the dial code?

Multiple countries can have the same dial code. For example, the dial code for United States is +1 and the dial code for Canada is also +1. So, if we were to set the dial code instead of the country code, wrong flag would be shown for the country.

To solve this, this library uses the country code instead of the dial code. This library also exposes a getCountryByCode method that can be used to get the country details from the country code such as the dial code, country name and flag.

Development

This project integrates with react-native-builder-bob. To get started:

  1. Fork and Clone the repository.
  2. Create your feature branch.
  3. Install dependencies using yarn.
  4. Run example project using yarn example android, yarn example ios or yarn example web.
  5. Make your changes and create a PR!
  6. Thank you.

License

This package is licensed under the MIT License.

Contribution

Any kind of contribution is welcome. Thanks!