ZayRTun
1/17/2020 - 2:19 PM

Container with #boxShadow

Container with #boxShadow

Container(
  decoration: BoxDecoration(
    color: kWhite,
    boxShadow: [
      BoxShadow(
        color: kGrey,
        offset: Offset(1, 1),
        blurRadius: 4,
      ),
    ],
  ),
  child: Container()
)