Orange color corner curve padding not archive but here I get straight line only suggest any check my code..!
Widget build(Context context) {
return Padding(
padding: EdgeInsets.symmetric(vertical: 6.0, horizontal: 6.0),
child: Card(
elevation: 6.0,
color: Colors.white,
clipBehavior: Clip.hardEdge,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(16.0),
),
child: Container(
decoration: const BoxDecoration(
border: Border(
left: BorderSide(
color: Colors.transparent,
width: 2.0,
style: BorderStyle.solid,
),
),
),
padding: const EdgeInsets.all(18.0),
child: Column(
children: [],
),
),
),
);
}
2
Answers
You can follow this widget,
You could possibly use
Output: