()
| 38 | })); |
| 39 | |
| 40 | render() { |
| 41 | return this.state.portals.map(({ key, children }) => ( |
| 42 | <View |
| 43 | key={key} |
| 44 | collapsable={ |
| 45 | false /* Need collapsable=false here to clip the elevations, otherwise they appear above sibling components */ |
| 46 | } |
| 47 | pointerEvents="box-none" |
| 48 | style={StyleSheet.absoluteFill} |
| 49 | > |
| 50 | {children} |
| 51 | </View> |
| 52 | )); |
| 53 | } |
| 54 | } |
nothing calls this directly
no outgoing calls
no test coverage detected