thegamenicorus / react-native-phone-input

Phone input box for React Native
https://www.npmjs.com/package/react-native-phone-input
MIT License
394 stars 447 forks source link

How can I add caret sign to the right of the flag? #50

Open wzup opened 6 years ago

wzup commented 6 years ago

I want to show that the flag is actually a select and not an icon. I want to place a caret next to it. How can I do it?

screenshot-app-2018 06 18-20-38-36

bz123 commented 6 years ago

Very hacky but since this lib doesn't support any props passed within the phoneinput, I found out that you can do something like this:

<PhoneInput ... /> <Image source={} style={{position:'absolute', top: 15, left: 5, backgroundColor:'transparent'}}/>

Using position: 'absolute' you can stick an image or icon or whatever you want next to it. Quite hacky but works for now.