I have a webview (using react-native-webview) which has a small text input form.
I would like to disable auto-capitalization and auto-correct on the keyboard which pops up when the input form fields come into focus.
I have looked at the library docs and don't see an option to configure that. I know there is an option to disable these fields with a TextInput component, but implementing the form directly in my app is not an option.
If there is a way to disable these keyboard settings across the whole app, that would also work.
Is there a way to configure the webview to do what I am trying to accomplish?
Thanks