Answers for "how cut one corner of container flutter"

2

flutter container rounded top corners

Container(
  height: 200.0,
  color: Colors.transparent,
  child: Container(
    decoration:  BoxDecoration(
      color: Colors.red,
      borderRadius: BorderRadius.only(
        topLeft: const Radius.circular(20.0),
        topRight: const Radius.circular(20.0),
      )
    ),
    child: Text("Text ...."),
 ),
),
Posted by: Guest on April-27-2022

Code answers related to "how cut one corner of container flutter"

Browse Popular Code Answers by Language