Coder Social home page Coder Social logo

abdulgafur24 / react-native-intl-phone-input Goto Github PK

View Code? Open in Web Editor NEW

This project forked from muhammedalmaz/react-native-intl-phone-input

0.0 1.0 0.0 3.76 MB

React Native International Phone Input

License: MIT License

JavaScript 48.84% Java 11.67% Ruby 12.52% Objective-C 18.47% Starlark 8.51%

react-native-intl-phone-input's Introduction

React-Native-INTL-Phone-Input

It's an international phone input with phone mask.

USAGE

install npm library

npm install react-native-intl-phone-input

Δ°mport library

import IntlPhoneInput from 'react-native-intl-phone-input';

use component

  onChangeText = ({dialCode, unmaskedPhoneNumber, phoneNumber, isVerified}) => {
    console.log(dialCode, unmaskedPhoneNumber, phoneNumber, isVerified);
  };
  render() {
    return (
      <SafeAreaView>
        <IntlPhoneInput onChangeText={this.onChangeText} defaultCountry="TR" />
      </SafeAreaView>
    );
  }

Custom Modal Example

 renderCustomModal=(modalVisible, countries, onCountryChange) => (
    <Modal visible={modalVisible}>
      <SafeAreaView style={{ flex: 1 }}>
        <View>
          <View>
            <TextInput placeholder="Search" />
            <Text>πŸ”</Text>
          </View>
          <FlatList
            style={{ flex: 1 }}
            data={countries}
            keyExtractor={(item, index) => index.toString()}
            renderItem={({ item }) => (
              <TouchableWithoutFeedback onPress={() => onCountryChange(item.code)}>
                <Text>{item['your language code here for example tr']}</Text>
              </TouchableWithoutFeedback>
            )}
          />
        </View>
        <TouchableOpacity onPress={() => this.phoneInput.hideModal()}>
          <Text>CLOSE</Text>
        </TouchableOpacity>
      </SafeAreaView>
    </Modal>
  )

  render(){
    return <IntlPhoneInput
        ref={(ref) => this.phoneInput = ref}
        customModal={this.renderCustomModal}
        defaultCountry="TR"
        lang="TR"
      />;
  }

Supported Languages
TR Turkish
LT Lithuanian
EN English
RU Russian
prop names type default value comment
lang String Translate country name on modal
placeholder String This prop change the phone input placeholder
defaultCountry String TR You can change your default country code
onChangeText Function This function works when input text is changed
customModal Function Generate your custom modal
phoneInputStyle Style This prop is about the text field's ReactNative.TextInput style
containerStyle Style This prop is about the text field's container style
dialCodeTextStyle Style
flagStyle Style
modalContainer Style This prop is about the modal field's SafeAreaView style.
filterInputStyle Style This prop is about the top of model filter text style
closeButtonStyle Style This prop is about text style of bottom modal
modalCountryItemCountryNameStyle Style
filterText String Filter This is the text of placeholder input of top modal
closeText String CLOSE This prop is about the text of bottom modal
disableCountryChange Bool false This prop is about disable open select country modal

react-native-intl-phone-input's People

Contributors

muhammedalmaz avatar roka20012 avatar satya5614 avatar thingsidoforlove avatar zl-0627 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.