'keyboardType 'number-pad' doesn't work on android emulator or android device

I am quite new on react-native. I have tried to build simple app. TextInput component's prop keyboardType 'number-pad' doesn't work properly. I dont understand why. Help me.



Solution 1:[1]

in the TextInput props, try using keyboardType ={'phone-pad'}

<TextInput keyboardType = {'phone-pad'}>

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Mehdi Khalfallah