Last active
February 5, 2018 07:00
-
-
Save mfrachet/02f99869913764e04c43793777286539 to your computer and use it in GitHub Desktop.
reparentable.js2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<View style={styles.container}> | |
<Reparentable name="fullscreenView" target=""> | |
<FullScreenContainer /> | |
</Reparentable> | |
<Reparentable | |
name="videoPlayerId" | |
target={this.state.isFullscreen ? "fullscreenView" : ""} | |
> | |
<VideoPlayer /> | |
</Reparentable> | |
</View> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment