Answers for "how to make container border radius flutter shadow"

3

shadow container flutter

BoxDecoration(
  boxShadow: [
    BoxShadow(
      color: Colors.grey.withOpacity(0.5),
      spreadRadius: 5,
      blurRadius: 7,
      offset: Offset(0, 3), // changes position of shadow
    ),
  ],
)
Posted by: Guest on June-27-2020

Code answers related to "how to make container border radius flutter shadow"

Browse Popular Code Answers by Language