react-native-masked-text icon indicating copy to clipboard operation
react-native-masked-text copied to clipboard

writing direction

Open canerd7u opened this issue 5 years ago • 2 comments

Hi ;

how do I get typing to the left?

canerd7u avatar Mar 11 '19 07:03 canerd7u

Hmmmm nice challenge. I will try to implement this.

bhrott avatar Mar 17 '19 21:03 bhrott

@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} />

abjacs avatar Dec 19 '19 20:12 abjacs