Flutter give container rounded border

后端 未结 6 1271
温柔的废话
温柔的废话 2020-12-28 12:05

I\'m making container, I gave it a border, but I would be nice to have rounded borders.

This is what I have now (see image)

https://drive.google.com/file/d/1

6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-28 12:44

    Enhancement for the above answer.

    Container(
      decoration: BoxDecoration(
        border: Border.all(
          color: Colors.red[500],
        ),
       borderRadius: BorderRadius.circular(20) // use instead of BorderRadius.all(Radius.circular(20))
      ),
      child: ...
    )
    

提交回复
热议问题