sm constant
Implementation
static const List<BoxShadow> sm = [
BoxShadow(
color: Color(0x0D000000), // rgba(0, 0, 0, 0.05)
offset: Offset(0, 1),
blurRadius: 3,
),
BoxShadow(
color: Color(0x0D000000), // rgba(0, 0, 0, 0.05)
offset: Offset(0, 1),
blurRadius: 2,
spreadRadius: -1,
),
];