1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-26 18:58:21 +02:00

Mobile: Fixed colour of placeholder text in dark theme

This commit is contained in:
Laurent Cozic 2019-07-21 17:16:15 +01:00
parent 6e64b950ca
commit 45ad201132
2 changed files with 8 additions and 0 deletions

View File

@ -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}
/>
</View>
);

View File

@ -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');