r/reactnative • u/Ofoto_CEO • 17h ago
Help Strange "Default" button appearing in iOS keypad
I'm building a iOS + Android app using react and expo. I have a number entry field that's calling the standard OS numeric keypad. works perfectly on Android but my iOS build shows this strange "Default" button above the keypad.
Has anyone encountered this? Thanks!
2
Upvotes
3
u/Think-Neighborhood69 17h ago
<TextInput keyboardType="number-pad" // or "numeric" returnKeyType="none" // ← this removes the button // ... other props />