screenGradientBackground property
Implementation
static BoxDecoration screenGradientBackground = const BoxDecoration(
gradient: LinearGradient(
begin: Alignment(0.5, 0),
end: Alignment(0.5, 1),
colors: [
Color.fromRGBO(254, 243, 239, 1.0),
Color.fromRGBO(255, 249, 237, 1),
],
),
);