Skip to content

Instantly share code, notes, and snippets.

@jacobp100
Last active May 30, 2020 21:22
Show Gist options
  • Save jacobp100/4206ceb7723e90ec31a9adc6c621d461 to your computer and use it in GitHub Desktop.
Save jacobp100/4206ceb7723e90ec31a9adc6c621d461 to your computer and use it in GitHub Desktop.
import { DynamicColorIOS } from 'react-native'
const styles = StyleSheet.create({
title: {
color: DynamicColorIOS({
light: 'black',
dark: 'white'
})
}
})
const Example = () => {
// Look mum, no hooks!
return (
<Text style={styles.title}>
Some text...
</Text>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment