Does anyone know how I can create this container in flutter? This is the outcome I want to receive
I tried something like this but I don’t know how to add them to be shown in the specific way
Container(
width: MediaQuery.of(context).size.width / 1.5,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(18),
color: Colors.black.withOpacity(0.1)),
child: Text('Subcribers n 365'),
),
2
Answers
You could do the same behavior using Row, Column and a VerticalDivider like this:
With that you can just use the
StatsCard()
component.That shows me this:
try this: