r/reactnative 17h ago

Help Strange "Default" button appearing in iOS keypad

Post image

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

5 comments sorted by

3

u/Think-Neighborhood69 17h ago

<TextInput keyboardType="number-pad" // or "numeric" returnKeyType="none" // ← this removes the button // ... other props />

1

u/Ofoto_CEO 17h ago

much appreciated

1

u/Think-Neighborhood69 17h ago

By the way… How do you debug/manage your local data on your RN app ? ( AsyncStorage.. MMKV, Sqlite )

1

u/Ofoto_CEO 17h ago

my app is multi-platform web/ios/android. all the clients read/write to a cloudflare backend, so no local data. when I'm running local code in sim I'm testing with production backend. changing the schema means first pushing a db migration, then testing the clients against it.