스타일 (1)

스타일 (1)

Style 방식 #

1. inline

<View style={{...}}>
...
</View>

2. StyleSheet

<View style={styles.mainView}>
...
</View>

...

const styles = StyleSheet.create({
    mainView: {
        ....
    }
})