Adjust padding on badges

This commit is contained in:
krawieck 2020-09-06 00:08:50 +02:00
parent e3dc2d1e14
commit af3787740c
1 changed files with 5 additions and 2 deletions

View File

@ -409,8 +409,11 @@ class _AboutTab extends StatelessWidget {
'''${community.numberOfSubscribers} subscriber${pluralS(community.numberOfSubscribers)}'''),
_Badge(
'''${community.numberOfPosts} post${pluralS(community.numberOfPosts)}'''),
_Badge(
'''${community.numberOfComments} comment${pluralS(community.numberOfComments)}'''),
Padding(
padding: const EdgeInsets.only(right: 15),
child: _Badge(
'''${community.numberOfComments} comment${pluralS(community.numberOfComments)}'''),
),
],
),
),