MCPcopy Create free account
hub / github.com/shoutem/ui / constructor

Function constructor

components/TextInput.js:13–21  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

11
12class TextInput extends PureComponent {
13 constructor(props) {
14 super(props);
15
16 autoBindReact(this);
17
18 this.state = {
19 isFocused: props.highlightOnFocus && props.autoFocus,
20 };
21 }
22
23 handleBlur() {
24 const { onBlur } = this.props;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected