Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

How can I add shadow to the widget in flutter?

Container(
                decoration: BoxDecoration(
                  boxShadow: [
                    BoxShadow(
                      color: Colors.grey.withOpacity(0.4),
                      spreadRadius: 2,
                      blurRadius: 8,
                    ),
                  ],
                ),
               ),
 
PREVIOUS NEXT
Tagged: #How #I #add #shadow #widget
ADD COMMENT
Topic
Name
8+9 =