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
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,), ) ),