If you try to long press a TextInput to copy / cut / delete a block of text inside of a ScrollView with removeClippedSubviews set to true, it will not work -- it will just move your cursor to that position. All other interactions with the TextInput work as expected.
Reproduced here: https://github.com/brentvatne/text-selection-repro
- Clone and run the repo, try to select text in the ListView part (first two text inputs). Try in ScrollVIew and View inputs and notice that it works.
- Add
removeClippedSubviews={false} to the ListView and reload, it should now work.
cc @dmmiller @kmagiera
If you try to long press a TextInput to copy / cut / delete a block of text inside of a ScrollView with
removeClippedSubviewsset to true, it will not work -- it will just move your cursor to that position. All other interactions with the TextInput work as expected.Reproduced here: https://github.com/brentvatne/text-selection-repro
removeClippedSubviews={false}to the ListView and reload, it should now work.cc @dmmiller @kmagiera