How to get a square with rounded corners with text in it?

0
I need to make something like this in my app.  The data is not the problem. But i’m struggeling how to get the lay-out correct.  I hope you can give a direction on how to do this.  Edit: The background should be just white. 
asked
1 answers
3

Bob

Assuming all of those items are enclosed in a Container, you could add css like this to the Container

border: 1px solid black;
border-radius: 5px;

You can play with colors, width and border-radius to get the look you need.

Hope that helps,

Mike

answered