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