From 962c5423efd014fb7323e3e71c3b51f0578fafd0 Mon Sep 17 00:00:00 2001 From: Karan Asthana Date: Tue, 15 Sep 2020 14:12:03 +0530 Subject: [PATCH] made changes according to the issues --- src/Editor/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Editor/index.js b/src/Editor/index.js index ef31dea..cfaf71b 100644 --- a/src/Editor/index.js +++ b/src/Editor/index.js @@ -569,7 +569,7 @@ export class Editor extends React.Component { value={state.inputText} onBlur={props.toggleEditor} onChangeText={this.onChange} - selection={this.state.selection} + selection={Platform.OS=== 'ios' ? this.state.selection : null } selectionColor={"#000"} onSelectionChange={this.handleSelectionChange} placeholder={state.placeholder}