Answers for "how to shadow container in flutter"

12

flutter add shadow to container

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),
)
Posted by: Guest on April-08-2020
0

flutter shadow container

Card(
            elevation: 8,
            child: Container(width: 100, height: 100, color: Colors.blue),
          ),
Posted by: Guest on January-27-2021

Code answers related to "how to shadow container in flutter"

Browse Popular Code Answers by Language