vitalets / react-native-extended-stylesheet

Extended StyleSheets for React Native
MIT License
2.93k stars 132 forks source link

EStyleSheet doesn't change view styles on Android apps #35

Closed lightboys22 closed 7 years ago

lightboys22 commented 7 years ago

EStyleSheet doesn't change view styles on Android apps. (It works for iOS apps).

Below is an example... `

Hello

const styles = EStyleSheet.create({ header: { color: 'red', } }); `

vitalets commented 7 years ago

Did you call EStyleSheet.build() ?

lightboys22 commented 7 years ago

Thanks. Calling EStyleSheet.build() after EStyleSheet.create() works.