getAppBarHeight static method
double
getAppBarHeight(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static double getAppBarHeight(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.appBarHeight ??
style?.appBarHeight ??
getStyleByType(
UpConfig.of(context).theme,
colorType,
).appBarHeight ??
56;
}