From 4d55f85aeec52072d4a150b05f044546917271ff Mon Sep 17 00:00:00 2001 From: Anton Gilgur Date: Fri, 22 Nov 2019 23:34:35 -0500 Subject: [PATCH] (change): don't autocorrect search input - at least in my experience, I'm typing lots of japanese words, so the autocorrect gets in the way a lot - while it may be useful for some english words, I think the frustrating and annoying experience it gives for japanese words far outweighs the usefulness such that it should be disabled - changing autocorrect to false also turns off the spellcheck, so no more red lines appearing in the input either --- components/mainView.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/mainView.js b/components/mainView.js index d9ea36b..57bb771 100644 --- a/components/mainView.js +++ b/components/mainView.js @@ -20,7 +20,8 @@ export default class MainView extends React.Component { switch (section.title) { case 'Search...': return + placeholderTextColor={styles.text.color} autoCorrect={false} + {...section.props} /> case 'Favorites': return Favorites case 'Latest':