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