sunkenBoxDecoration top-level constant
A BoxDecoration with a sunken effect for use with a Container's decoration: parameter.
Implementation
const sunkenBoxDecoration = BoxDecoration(
color: Colors.white,
// boxShadow: [
// BoxShadow(
// color: Colors.grey.withOpacity(1),
// spreadRadius: 10,
// blurRadius: 10,
// offset: const Offset(10, 10),
// ),
// ],
);