react-native-masked-text
react-native-masked-text copied to clipboard
writing direction
Hi ;
how do I get typing to the left?
Hmmmm nice challenge. I will try to implement this.
@canerd7u You can try setting the selection property on your TextInput.
This will place the caret at the start of your TextInput.
<TextInput selection={start: 0, end: 0 } {...this.props} />