mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-19 11:21:41 +03:00
android clear crash issue fix
This commit is contained in:
parent
4c977a8db6
commit
225b560bad
@ -119,13 +119,22 @@ const MarkdownEditorView = ({
|
||||
inputRef.current.setNativeProps({
|
||||
text: _text,
|
||||
});
|
||||
|
||||
// Workaround for iOS selection update issue
|
||||
setTimeout(() => {
|
||||
const isIos = Platform.OS === 'ios';
|
||||
if (isIos) {
|
||||
setTimeout(() => {
|
||||
inputRef.current.setNativeProps({
|
||||
selection: _selection,
|
||||
});
|
||||
setSelection(_selection);
|
||||
}, 200);
|
||||
} else {
|
||||
inputRef.current.setNativeProps({
|
||||
selection: _selection,
|
||||
});
|
||||
setSelection(_selection);
|
||||
}, 200);
|
||||
}
|
||||
_changeText(_text);
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user