Skip to content

Instantly share code, notes, and snippets.

@jacobp100
Created May 30, 2020 20:51
Show Gist options
  • Save jacobp100/c6d29db97f01fcb5f6270705b6a1742f to your computer and use it in GitHub Desktop.
Save jacobp100/c6d29db97f01fcb5f6270705b6a1742f to your computer and use it in GitHub Desktop.
import { useColorScheme } from 'react-native'
const styles = StyleSheet.create({
titleLight: {
color: 'black'
},
titleDark: {
color: 'white'
}
})
const Example = () => {
const colorScheme = useColorScheme()
const isDark = colorScheme === 'dark'
return (
<Text style={isDark ? styles.titleDark : styles.titleLight}>
Some text...
</Text>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment