cloudorbush

Results 75 comments of cloudorbush

can confirm this also happens when capitalizing the result.

@nikgraf I replaced all instances of `` and `` with ``, and removed flex='content'. This seems to have solved the problem. Not ideal, but it works. edit: it seems fixed...

@Davete0302 use another library

@e-itegbe - https://github.com/CaioQuirinoMedeiros/react-native-mask-input - https://github.com/akinncar/react-native-mask-text This is just for the masking. Unfortunately I don't think there's a good all-in-one solution available, but let me know if you find it.

It's possible using `textInputProps`: ```jsx const textInputProps={ onSubmitEditing: () => ref.current?.focus() } return( ) ```

@domoretrix did you define and set the `ref`? ```jsx const ref = useRef(null) return ```

@domoretrix can you copy/paste your code here?

Try this: ```jsx const tiRef = useRef(null) const textInputProps={ onSubmitEditing: () => tiRef.current?.focus() } return( ) ```