funBoxShadow method
Implementation
BoxShadow funBoxShadow(){
return BoxShadow(
color: Colors.grey.withOpacity(0.125),
spreadRadius: 1,
blurRadius: 2,
offset: const Offset(0, 0), // changes position of shadow
);
}
BoxShadow funBoxShadow(){
return BoxShadow(
color: Colors.grey.withOpacity(0.125),
spreadRadius: 1,
blurRadius: 2,
offset: const Offset(0, 0), // changes position of shadow
);
}