AstrOOnauta / react-native-international-phone-number

⚛️ International mobile phone number input component for React Native 📱
https://snack.expo.dev/@astroonauta/react-native-international-phone-number
ISC License
262 stars 45 forks source link

Question: Is there a way to center the modal on the screen? #34

Closed pedrogarciyalopez closed 9 months ago

pedrogarciyalopez commented 9 months ago

Hello. thank you for awesome lib! Is there a way to center the modal on the screen? How can i do that?

AstrOOnauta commented 9 months ago

@pedrogarciyalopez unfortunately not...

The countries modal works as a bottom sheet only (or full page setting the height props to 100%). Its the actual behavior, sorry..

🚀 AstrOOnauta 🚀

pedrogarciyalopez commented 9 months ago

@AstrOOnauta thank you for quick reply.

If someone needs to do the same thing, I found a simple solution. I just set the margin: 'auto' in the styles of the modal window. We need this because we are using react-native-web, and on the desktop, all our modal windows are centered on the screen.

modal: {
    padding: 25,
    paddingBottom: 0,
    borderRadius: 15,
    margin: 'auto',
  }
image