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:
parent
6e64b950ca
commit
45ad201132
@ -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>
|
||||
);
|
||||
|
@ -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');
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user