diff --git a/ReactNativeClient/lib/components/screens/note.js b/ReactNativeClient/lib/components/screens/note.js index 7d4b7f6408..c6177ae111 100644 --- a/ReactNativeClient/lib/components/screens/note.js +++ b/ReactNativeClient/lib/components/screens/note.js @@ -803,6 +803,7 @@ class NoteScreenComponent extends BaseScreenComponent { blurOnSubmit={false} selectionColor={theme.textSelectionColor} placeholder={_('Add body')} + placeholderTextColor={theme.colorFaded} /> ); } @@ -850,6 +851,7 @@ class NoteScreenComponent extends BaseScreenComponent { onChangeText={this.title_changeText} selectionColor={theme.textSelectionColor} placeholder={_('Add title')} + placeholderTextColor={theme.colorFaded} /> ); diff --git a/ReactNativeClient/main.js b/ReactNativeClient/main.js index acbf0f396d..66bafc6158 100644 --- a/ReactNativeClient/main.js +++ b/ReactNativeClient/main.js @@ -8,6 +8,12 @@ // console.disableYellowBox = true +import {YellowBox} from 'react-native'; +YellowBox.ignoreWarnings([ + 'Require cycle: node_modules/react-native-', + 'Require cycle: node_modules/rn-fetch-blob', +]); + const { AppRegistry } = require('react-native'); const { Root } = require('./root.js');