Skip to content

Instantly share code, notes, and snippets.

@aandrewww
Created May 5, 2017 08:18
Show Gist options
  • Save aandrewww/62903af4937069289a30ad06cedcc673 to your computer and use it in GitHub Desktop.
Save aandrewww/62903af4937069289a30ad06cedcc673 to your computer and use it in GitHub Desktop.
const platformSpecific = ({ios, android}) => (Platform.OS == 'ios') ? ios : android;
<View style={{ color: platformSpecific({ ios: 'black', android: 'white' }) }}/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment