How to make one side circular border of widget with flutter?
I’m trying to build one side circular border with Container widget in flutter. I have searched for it but can’t get any solution. Container( width: 150.0, padding: const EdgeInsets.all(20.0), decoration: BoxDecoration( // borderRadius: BorderRadius.circular(30.0), /* border: Border( left: BorderSide() ),*/ color: Colors.white ), child: Text(“hello”), ), Answer Use BorderRadius.only and provide the sides return Center( … Read more