Please see image. I'm not so much concerned with the child of the container. Just the decoration. I'm trying to achieve the yellow background and the check icon that's at the top right corner. So far i've only being able to make the container and give it a border colour.
This is my code so far for the Container
:
Container(
height: 50,
width: 90,
decoration: BoxDecoration(
border: Border.all(color:Colors.yelloAccent[100]),
borderRadius: BorderRadius.all(Radius.circular(5),
),
color: color,
),
child: Center(child: Text(text, style: TextStyle(fontSize: 12, color: textColor, fontWeight: FontWeight.w900))),
);