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
You can use ClipRRect Widget :
ClipRRect ( borderRadius: BorderRadius.circular(5.0), child: Container( height: 25, width: 40, color: const Color(0xffF8742C), child: Align( alignment: Alignment.center, child: Text("Withdraw"))), )