helperStyle method
Dtyling of hint using TextStyle
Equivalent to
TextFieldForm(
decoration: InputDecoration(
helperStyle: input
)
)
Implementation
NikuTextField helperStyle(TextStyle textStyle) {
// Input Label Style
_helper_color = textStyle.color;
_helper_backgroundColor = textStyle.backgroundColor;
_helper_fontSize = textStyle.fontSize;
_helper_fontWeight = textStyle.fontWeight;
_helper_fontStyle = textStyle.fontStyle;
_helper_letterSpacing = textStyle.letterSpacing;
_helper_wordSpacing = textStyle.wordSpacing;
_helper_height = textStyle.height;
_helper_foreground = textStyle.foreground;
_helper_background = textStyle.background;
_helper_shadows = textStyle.shadows;
_helper_fontFeatures = textStyle.fontFeatures;
_helper_textDecoration = textStyle.decoration;
_helper_textDecorationColor = textStyle.decorationColor;
_helper_textDecorationThickness = textStyle.decorationThickness;
_helper_fontFamily = textStyle.fontFamily;
_helper_fontFamilyFallback = textStyle.fontFamilyFallback;
_helper_textBaseline = textStyle.textBaseline;
return this;
}