@@ -24,33 +24,41 @@ export type LayoutStyle<+Dimension = DimensionValue> = {
24
24
+ display ? : 'none' | 'flex' ,
25
25
+ width ? : Dimension ,
26
26
+ height ? : Dimension ,
27
- + top ? : Dimension ,
28
27
+ bottom ? : Dimension ,
28
+ + end ? : Dimension ,
29
29
+ left ? : Dimension ,
30
30
+ right ? : Dimension ,
31
+ + start ? : Dimension ,
32
+ + top ? : Dimension ,
31
33
+ minWidth ? : Dimension ,
32
34
+ maxWidth ? : Dimension ,
33
35
+ minHeight ? : Dimension ,
34
36
+ maxHeight ? : Dimension ,
35
37
+ margin ? : Dimension ,
36
- + marginVertical ? : Dimension ,
37
- + marginHorizontal ? : Dimension ,
38
- + marginTop ? : Dimension ,
39
38
+ marginBottom ? : Dimension ,
39
+ + marginEnd ? : Dimension ,
40
+ + marginHorizontal ? : Dimension ,
40
41
+ marginLeft ? : Dimension ,
41
42
+ marginRight ? : Dimension ,
43
+ + marginStart ? : Dimension ,
44
+ + marginTop ? : Dimension ,
45
+ + marginVertical ? : Dimension ,
42
46
+ padding ? : Dimension ,
43
- + paddingVertical ? : Dimension ,
44
- + paddingHorizontal ? : Dimension ,
45
- + paddingTop ? : Dimension ,
46
47
+ paddingBottom ? : Dimension ,
48
+ + paddingEnd ? : Dimension ,
49
+ + paddingHorizontal ? : Dimension ,
47
50
+ paddingLeft ? : Dimension ,
48
51
+ paddingRight ? : Dimension ,
52
+ + paddingStart ? : Dimension ,
53
+ + paddingTop ? : Dimension ,
54
+ + paddingVertical ? : Dimension ,
49
55
+ borderWidth ? : number ,
50
- + borderTopWidth ? : number ,
51
56
+ borderBottomWidth ? : number ,
57
+ + borderEndWidth ? : number ,
52
58
+ borderLeftWidth ? : number ,
53
59
+ borderRightWidth ? : number ,
60
+ + borderStartWidth ? : number ,
61
+ + borderTopWidth ? : number ,
54
62
+ position ? : 'absolute' | 'relative' ,
55
63
+ flexDirection ? : 'row' | 'row-reverse' | 'column' | 'column-reverse' ,
56
64
+ flexWrap ? : 'wrap' | 'nowrap' ,
@@ -124,21 +132,29 @@ export type ViewStyle<+Dimension = DimensionValue, +Color = ColorValue> = {
124
132
+ backfaceVisibility ? : 'visible' | 'hidden' ,
125
133
+ backgroundColor ? : Color ,
126
134
+ borderColor ? : Color ,
127
- + borderTopColor ? : Color ,
128
- + borderRightColor ? : Color ,
129
135
+ borderBottomColor ? : Color ,
136
+ + borderEndColor ? : Color ,
130
137
+ borderLeftColor ? : Color ,
138
+ + borderRightColor ? : Color ,
139
+ + borderStartColor ? : Color ,
140
+ + borderTopColor ? : Color ,
131
141
+ borderRadius ? : number ,
132
- + borderTopLeftRadius ? : number ,
133
- + borderTopRightRadius ? : number ,
142
+ + borderBottomEndRadius ? : number ,
134
143
+ borderBottomLeftRadius ? : number ,
135
144
+ borderBottomRightRadius ? : number ,
145
+ + borderBottomStartRadius ? : number ,
146
+ + borderTopEndRadius ? : number ,
147
+ + borderTopLeftRadius ? : number ,
148
+ + borderTopRightRadius ? : number ,
149
+ + borderTopStartRadius ? : number ,
136
150
+ borderStyle ? : 'solid' | 'dotted' | 'dashed' ,
137
151
+ borderWidth ? : number ,
138
- + borderTopWidth ? : number ,
139
- + borderRightWidth ? : number ,
140
152
+ borderBottomWidth ? : number ,
153
+ + borderEndWidth ? : number ,
141
154
+ borderLeftWidth ? : number ,
155
+ + borderRightWidth ? : number ,
156
+ + borderStartWidth ? : number ,
157
+ + borderTopWidth ? : number ,
142
158
+ opacity ? : number | AnimatedNode ,
143
159
+ elevation ? : number ,
144
160
} ;
0 commit comments