Answers for "rounded expansion tile flutter"

0

rounded expansion tile flutter

Just wrap it with a ClipRRect widget, it allows you to set a border radius for any widget.
Posted by: Guest on October-19-2021
-1

flutter listtile rounded corners

Container(
  padding: const EdgeInsets.only(right: 8.0, left: 8.0),
  height: 60,
  child: Card(
    elevation: 2,
    shape: RoundedRectangleBorder(
        side: BorderSide(color: appThemeColor.shade200, width: 0.5),
        borderRadius: BorderRadius.circular(5)),
    child: Row(
      mainAxisAlignment: MainAxisAlignment.end,
      children: <Widget>[
        Container(
          decoration: BoxDecoration(
            borderRadius: BorderRadius.only(
                topRight: Radius.circular(15),
                bottomRight: Radius.circular(15)),
            color: Colors.deepPurple,
          ),
          width: 5,
        ),
      ],
    ),
  ),
)
Posted by: Guest on January-21-2021

Browse Popular Code Answers by Language