'How to customize numeric keyboard in Android using ReactNative TextInput

I am using React-Native (v 0.66.3) TextInput to Android to set numeric values, but I would like to find a way to remove the dot button and to have a more accurate keyboard, just to positive numeric values without decimals.

This is the result expected:

enter image description here

And the code used to the first approach is:

<TextInput
  keyboardType="numeric"
  returnKeyType="done"
  ...
/>

enter image description here

Any suggestion?



Sources

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

Source: Stack Overflow

Solution Source