I want to set a dark and a light color scheme and use it as a background color of containers.
Here is my code:
Container(
padding: const EdgeInsets.all(kDefaultPadding),
//change required here:
decoration: const BoxDecoration(color: kDarkColor),
child: ... ,
)