Answers for "flutter elevation"

2

flutter container elevation

body: Container(
    margin: EdgeInsets.all(8),
    decoration: BoxDecoration(
        borderRadius: BorderRadius.circular(8.0),
        color: Colors.white,
        boxShadow: [
            BoxShadow(
                color: Colors.black,
                blurRadius: 2.0,
                spreadRadius: 0.0,
                offset: Offset(2.0, 2.0), // shadow direction: bottom right
            )
        ],
    ),
    child: Container(width: 100, height: 50) // child widget, replace with your own
),
Posted by: Guest on August-04-2020
1

flutter container elevation

return Material(
       elevation: 20,
       child Container(),
       );
Posted by: Guest on May-26-2021

Code answers related to "flutter elevation"

Browse Popular Code Answers by Language