FLabelStyles.inherit constructor
FLabelStyles.inherit({
- required FStyle style,
Creates a FLabelStyles that inherits its properties from the given style
.
Implementation
FLabelStyles.inherit({required FStyle style})
: horizontalStyle = (
layout: const FLabelLayoutStyle(
childPadding: EdgeInsets.only(right: 8),
descriptionPadding: EdgeInsets.only(top: 2),
errorPadding: EdgeInsets.only(top: 2),
),
state: FLabelStateStyles.inherit(style: style),
),
verticalStyle = (
layout: const FLabelLayoutStyle(
labelPadding: EdgeInsets.only(bottom: 5),
descriptionPadding: EdgeInsets.only(top: 5),
errorPadding: EdgeInsets.only(top: 5),
),
state: FLabelStateStyles.inherit(style: style)
);