getDrawerSurfaceTintColor static method
Color
getDrawerSurfaceTintColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getDrawerSurfaceTintColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.drawerSurfaceTintColor ??
style?.drawerSurfaceTintColor ??
getStyleByType(UpConfig.of(context).theme, colorType)
.drawerSurfaceTintColor ??
Colors.transparent;
}