(props: KeyboardAwareHOCProps)
| 197 | } |
| 198 | |
| 199 | constructor(props: KeyboardAwareHOCProps) { |
| 200 | super(props) |
| 201 | this.keyboardWillShowEvent = undefined |
| 202 | this.keyboardWillHideEvent = undefined |
| 203 | this.callbacks = {} |
| 204 | this.position = { x: 0, y: 0 } |
| 205 | this.defaultResetScrollToCoords = null |
| 206 | const keyboardSpace: number = props.viewIsInsideTabBar |
| 207 | ? _KAM_DEFAULT_TAB_BAR_HEIGHT |
| 208 | : 0 |
| 209 | this.state = { keyboardSpace } |
| 210 | } |
| 211 | |
| 212 | componentDidMount() { |
| 213 | this.mountedComponent = true |
nothing calls this directly
no outgoing calls
no test coverage detected