Home

Published

- 1 min read

flutter add shadow to container

img of flutter add shadow to container

The solution for this is noted below

flutter add shadow to container

Solution

   Container(
  decoration: BoxDecoration(
    boxShadow: [
      BoxShadow(
        color: Colors.grey.withOpacity(0.8),
        spreadRadius: 10,
        blurRadius: 5,
        offset: Offset(0, 7), // changes position of shadow
      ),
    ],
  ),
  child: Image.asset(chocolateImage),
)

Try other methods by searching on the site. That is if this doesn’t work