()
| 83 | }; |
| 84 | |
| 85 | render() { |
| 86 | return ( |
| 87 | <View |
| 88 | style={[css.container, this.props.style]} |
| 89 | onLayout={this.onLayoutHandler} |
| 90 | onTouchStart={this.onTouchStartHandler} |
| 91 | onTouchMove={this.onTouchMoveHandler} |
| 92 | onTouchEnd={this.onTouchEndHandler} |
| 93 | > |
| 94 | {this.props.children} |
| 95 | </View> |
| 96 | ); |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | GameLoop.defaultProps = { |
nothing calls this directly
no outgoing calls
no test coverage detected