mtShadowFloated property
define of mtShadowFloated
Implementation
static List<BoxShadow> mtShadowFloated = [
BoxShadow(
color: const Color.fromARGB(14, 33, 36, 43),
spreadRadius: 2.rem,
blurRadius: 8.rem,
offset: Offset(0.rem, 2.rem), // changes position of shadow
),
BoxShadow(
color: const Color.fromARGB(12, 33, 36, 43),
spreadRadius: 5.rem,
blurRadius: 4.rem,
offset: Offset(0.rem, 2.rem), // changes position of shadow
),
]
/*[
BoxShadow(
color: const Color.fromARGB(14, 33, 36, 43),
spreadRadius: 0.rem,
blurRadius: 4.rem,
offset: Offset(0.rem, 2.rem), // changes position of shadow
),
BoxShadow(
color: const Color.fromARGB(12, 33, 36, 43),
spreadRadius: 0.rem,
blurRadius: 0.5.rem,
offset: Offset(0.rem, 0.rem), // changes position of shadow
),
]*/
;