Skip to content

Instantly share code, notes, and snippets.

@nicholasess
Created March 19, 2018 19:27
Show Gist options
  • Save nicholasess/63c13c2d638a6b6d73ea33f0a2c3d79e to your computer and use it in GitHub Desktop.
Save nicholasess/63c13c2d638a6b6d73ea33f0a2c3d79e to your computer and use it in GitHub Desktop.
const ViewContainer = ({children, style}) =>
Platform.OS == "ios" ? <Keyboard style={style} behavior="padding">{children}</Keyboard> :
<Keyboard style={style} behavior="position">{children}</Keyboard>
<ViewContainer>
<View> </View>
</ViewContainer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment