class TotalPosts extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
decoration: ShapeDecoration(shape: RoundedRectangleBorder()),
child: Column(children: [
Icon(Icons.photo_album),
Text('260'),
Text('Total posts'),
Row(children: [
Icon(Icons.trending_up),
Text('26.84%')
]),
]),
);
}
}