UNPKG

rn-phone-input-field

Version:

A React Native phone number input component built from scratch, featuring a text input for number entry, a custom dropdown for selecting country codes, and validation logic using regex or country-specific rules. It supports formatting, localization, and s

22 lines (20 loc) 447 B
const path = require('path'); const pkg = require('../package.json'); module.exports = { project: { ios: { automaticPodsInstallation: true, }, }, dependencies: { [pkg.name]: { root: path.join(__dirname, '..'), platforms: { // Codegen script incorrectly fails without this // So we explicitly specify the platforms with empty object ios: {}, android: {}, }, }, }, };