mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-30 08:26:59 +02:00
Mobile: Added placeholders for note title and body, and focus body by default for notes
This commit is contained in:
parent
0a06aa6f9f
commit
c4e21c2b6a
@ -655,7 +655,7 @@ class NoteScreenComponent extends BaseScreenComponent {
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
} else {
|
} else {
|
||||||
const focusBody = !isNew && !!note.title;
|
const focusBody = !note.is_todo;//!isNew && !!note.title;
|
||||||
|
|
||||||
// Note: blurOnSubmit is necessary to get multiline to work.
|
// Note: blurOnSubmit is necessary to get multiline to work.
|
||||||
// See https://github.com/facebook/react-native/issues/12717#issuecomment-327001997
|
// See https://github.com/facebook/react-native/issues/12717#issuecomment-327001997
|
||||||
@ -669,6 +669,7 @@ class NoteScreenComponent extends BaseScreenComponent {
|
|||||||
onChangeText={(text) => this.body_changeText(text)}
|
onChangeText={(text) => this.body_changeText(text)}
|
||||||
blurOnSubmit={false}
|
blurOnSubmit={false}
|
||||||
selectionColor={theme.textSelectionColor}
|
selectionColor={theme.textSelectionColor}
|
||||||
|
placeholder={_('Add body')}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -739,6 +740,7 @@ class NoteScreenComponent extends BaseScreenComponent {
|
|||||||
value={note.title}
|
value={note.title}
|
||||||
onChangeText={(text) => this.title_changeText(text)}
|
onChangeText={(text) => this.title_changeText(text)}
|
||||||
selectionColor={theme.textSelectionColor}
|
selectionColor={theme.textSelectionColor}
|
||||||
|
placeholder={_('Add title')}
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user