getScaffoldCompactDrawerWidth static method
double
getScaffoldCompactDrawerWidth(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static double getScaffoldCompactDrawerWidth(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.scaffoldCompactDrawerWidth ??
style?.scaffoldCompactDrawerWidth ??
getStyleByType(UpConfig.of(context).theme, colorType)
.scaffoldCompactDrawerWidth ??
UpConstants.kDefaultStyleSideBarCompactViewWith;
}