GitHub

File tree

  • Libraries/Components/TextInput

Original file line numberDiff line numberDiff line change

@@ -548,8 +548,6 @@ export type Props = $ReadOnly<{|

548548

*/

549549

onContentSizeChange?: ?(e: ContentSizeChangeEvent) => mixed,

550550
551-

onTextInput?: ?(e: TextInputEvent) => mixed,

552-
553551

/**

554552

* Callback that is called when text input ends.

555553

*/

@@ -948,7 +946,6 @@ class InternalTextInput extends React.Component<Props> {

948946

onScroll={this._onScroll}

949947

onSelectionChange={this._onSelectionChange}

950948

onSelectionChangeShouldSetResponder={emptyFunctionThatReturnsTrue}

951-

onTextInput={this._onTextInput}

952949

selection={selection}

953950

style={style}

954951

text={this._getText()}

@@ -983,7 +980,6 @@ class InternalTextInput extends React.Component<Props> {

983980

onFocus={this._onFocus}

984981

onScroll={this._onScroll}

985982

onSelectionChange={this._onSelectionChange}

986-

onTextInput={this._onTextInput}

987983

selection={selection}

988984

style={style}

989985

text={this._getText()}

@@ -1111,10 +1107,6 @@ class InternalTextInput extends React.Component<Props> {

11111107

}

11121108

};

11131109
1114-

_onTextInput = (event: TextInputEvent) => {

1115-

this.props.onTextInput && this.props.onTextInput(event);

1116-

};

1117-
11181110

_onScroll = (event: ScrollEvent) => {

11191111

this.props.onScroll && this.props.onScroll(event);

11201112

};

Read the original on github.com ↗