Flutter give container rounded border

后端 未结 6 1299
温柔的废话
温柔的废话 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条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-28 12:43

    Container(
        decoration: BoxDecoration(
          borderRadius: BorderRadius.circular(20.0),
          border: Border.all(
            color: HexColor('#C88A3D'),
            width: 3.0
          )
        ),
        child: Container(
          decoration: new BoxDecoration(borderRadius:
          BorderRadius.circular(20.0),
          color: Colors.white,),
        )
      ),
    

提交回复
热议问题