如何在react-native中组合多个内联样式对象和内联css?

Var*_*nde 2 css android styles stylesheet react-native

如何在react-native中组合多个内联样式对象和内联css?

它有 3 个样式对象 TimelineGreenColor、TimelineLeftBorder、TimelineLeftLine 用于视图 div

  const stylesB = StyleSheet.create( {
     TimelineGreenColor:
     {
       backgroundColor: "green",
     },
     TimelineLeftBorder:
     {
       position: 'absolute',
       width: 4,
       backgroundColor: "green",
       height: '100%',
       left: 4,
       top: 15,
     },
     TimelineLeftCircle:
     {
       position: 'absolute',
       width: 12,
       height: 12,
       backgroundColor: "green",
       top: 12,
       borderRadius: 50,
       left: 0,
       /*boxShadow: "0px 0px 10px -2px black",*/
     },
     TimelineLeftLine:
     {
       position: 'absolute',
       width: 15,
       height: 3,
       backgroundColor: "green",
       top: 16,
       left: 5,
   }

   <View style={how to write styles in react-native ??????????}></View>
Run Code Online (Sandbox Code Playgroud)

Var*_*nde 9

类型 1:如果您有一种内联样式

<View style = {{marginLeft: 7,paddingRight: "9%"}}></View>

类型 2:如果您有来自 styles 对象的一种样式

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

类型 3:如果您有来自 styles 对象的两个或多个样式

<View style = {[styles.TimelineLeftBorder,styles.TimelineGreenColor]}></View>

类型 4:如果您有来自 styles 对象的两个或多个样式,并且您还想提供正常的内联 css

<View style = {[styles.TimelineLeftBorder,styles.TimelineGreenColor,{marginLeft: 7}]}></View>