()
| 50 | getUIManagerCommand!: (name: string) => UIManagerCommand; |
| 51 | |
| 52 | render() { |
| 53 | const {tooltip = false, alphaHitTest = false} = this.props; |
| 54 | const AIRMapCallout = this.getNativeComponent(); |
| 55 | return ( |
| 56 | <AIRMapCallout |
| 57 | {...this.props} |
| 58 | tooltip={tooltip} |
| 59 | alphaHitTest={alphaHitTest} |
| 60 | style={[styles.callout, this.props.style]} |
| 61 | /> |
| 62 | ); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | const styles = StyleSheet.create({ |
nothing calls this directly
no outgoing calls
no test coverage detected