Answers for "expansionpanel radius border flutter"

4

round border container flutter

Container(
  decoration: BoxDecoration(
    border: Border.all(
      color: Colors.red[500],
    ),
    borderRadius: BorderRadius.all(Radius.circular(20))
  ),
  child: ...
)
Posted by: Guest on May-24-2020
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

Code answers related to "expansionpanel radius border flutter"

Browse Popular Code Answers by Language