I need this kinds of output
I try this code but this not provide rounded corner,
Container(
width: double.infinity,
height: 100,
decoration: const BoxDecoration(
// borderRadius: BorderRadius.all(Radius.circular(8)),
color: Colors.white,
border: Border(
left: BorderSide(width: 1, color: Colors.black),
bottom: BorderSide(width: 1, color: Colors.black),
right: BorderSide(width: 1, color: Colors.black),
)
),
)
how to solve this problem?
I also use borderRadious property
borderRadius: BorderRadius.all(Radius.circular(8)),
But this will generate an error "A borderRadius can only be given for a uniform Border."