Skip to content

Instantly share code, notes, and snippets.

@jdmunro
Created February 14, 2019 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdmunro/fc977ce70ec559e77c722034c0843984 to your computer and use it in GitHub Desktop.
Save jdmunro/fc977ce70ec559e77c722034c0843984 to your computer and use it in GitHub Desktop.
// Mobile and web only
const style = selectOnPlatform({
mobile: styles.mobileStyle,
web: styles.webStyle
});
// Alternatively, analogous to Platform.select
const style = selectOnPlatform({
android: styles.androidStyle,
ios: styles.iosStyle,
web: styles.webStyle
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment