shadowElement method
Implementation
shadowElement({Color? color}) {
return [
BoxShadow(
color: color ?? const Color.fromRGBO(0, 0, 0, 0.15),
blurRadius: 8,
offset: const Offset(0, 3),
spreadRadius: 0,
)
];
}
shadowElement({Color? color}) {
return [
BoxShadow(
color: color ?? const Color.fromRGBO(0, 0, 0, 0.15),
blurRadius: 8,
offset: const Offset(0, 3),
spreadRadius: 0,
)
];
}