May 2018
Intermediate to advanced
470 pages
13h 54m
English
The StyleSheet API from React Native can also be used in React 360 to define several styles in one place rather than adding styles to individual components:
const styles = StyleSheet.create({ subView: { width: 10, borderColor: '#d6d7da', }, text: { fontSize: '1em', fontWeight: 'bold', }})
The defined styles can be added to components as required:
<View style={styles.subView}> <Text style={styles.text}>hello</Text></View>
Read now
Unlock full access