TStylesShape
reexport
interface
TStylesShape
{
 Â
nativeBlockFlow
:
Partial
<
Pick
<
ViewStyle
,
"direction"
>
>
;
 Â
nativeBlockRet
:
Partial
<
Pick
<
ViewStyle
,
CSSLongNativeTranslatableBlockRetainedPropKey
>
>
;
 Â
nativeTextFlow
:
Partial
<
Pick
<
TextStyle
,
CSSLongNativeTranslatableTextFlowedPropKey
>
>
;
 Â
nativeTextRet
:
Partial
<
Pick
<
TextStyle
,
CSSLongNativeTranslatableTextRetainedPropKey
>
>
;
 Â
webBlockRet
:
Partial
<
Pick
<
ViewStyle
,
"position"
>
>
&
CSSProperties
;
 Â
webTextFlow
:
Partial
<
WebTextFlowProperties
>
&
CSSProperties
;
}
Defined in
@native-html/transient-render-engine
A record of styles organized in logical chunks:
- wether they are supported in React Native (native) and others (web).
- wether they target native Views (block) or Text (text).
- wether they are inherited by this node's children (flow) or not (retain).
#
FieldsnativeBlockFlow
#
required
nativeBlockFlow
:
Partial
<
Pick
<
ViewStyle
,
"direction"
>
>
;
nativeBlockRet
#
required
nativeTextFlow
#
required
nativeTextRet
#
required
webBlockRet
#
required
webBlockRet
:
Partial
<
Pick
<
ViewStyle
,
"position"
>
>
&
CSSProperties
;
webTextFlow
#
required