From 678ebd18192f9c88261c6bf8d2b5311ed8232900 Mon Sep 17 00:00:00 2001 From: MrFarhan Date: Thu, 21 Nov 2024 16:33:41 +0500 Subject: [PATCH] Updated readme file to include the importance of using external library (Or else the package will throw error) --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 2b4a942a..1019857d 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,20 @@ Demo of Phone Input box for React Native (android/ios) npm i react-native-phone-input --save ``` +## Required external library + +You need to add any external library to show the list of countries. + +You can checkout below libraries that works with this package, or else you will face requiredNativeComponent: RNCPicker was not foud in the uimanager. +``` +npm i @react-native-picker/picker +``` +or +``` +npm i react-native-country-picker-modal +``` + + ## Basic Usage ```jsx