extensionGeneralLibFlutterShadows method
Implementation
List<Shadow> extensionGeneralLibFlutterShadows() {
return [
BoxShadow(
color: theme.shadowColor.withAlpha(110),
spreadRadius: 1,
blurRadius: 4,
offset: const Offset(0, 3), // changes position of shadow
),
];
}