getTextfieldLabelSize static method
double
getTextfieldLabelSize(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static double getTextfieldLabelSize(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.textfieldLabelSize ??
style?.textfieldLabelSize ??
getStyleByType(
(FlutterUpConfig.of(context)?.theme ??
UpConstants.kDefaultTheme),
colorType)
.textfieldLabelSize ??
UpConstants.kDefaultStyleTextSize;
}