getStyle method
Default text style for label and hint text.
Implementation
TextStyle getStyle() {
return TextStyle(
fontFamily: UFUtils.fontFamily, // TODO - 'Roboto',
// package: 'UFU_mobile_flutter_ui',
fontWeight: widget.type == UFUInputBoxType.withoutLabel
? widget.fontWeight ?? FontWeight.w500
: FontWeight.w300,
height: 1.2,
fontSize: TextHelper.getTextSize(widget.textSize),
);
}