const styles = StyleSheet.create({

    container : {
        flex : 1,
        backgroundColor : config.getColor('bg'),
    },
    title : {
        marginLeft : 80,
        marginTop : 30,
        height : 35,
        width : 100,
        borderRadius : 17,
        borderWidth : 1,
        borderColor : config.getColor('theme'),
        fontSize : 17,
        color : config.getColor('theme')
    }
});

当我 console.log 样式.title 时,我得到了一个数字。那么如何将它转换为一个对象?

最佳答案

您可以使用 flatten 方法。

例子:

StyleSheet.flatten(styles.title)

关于javascript - 如何在 StyleSheet.create 中获取对象?(React Native),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37918123/

10-11 11:34