Increase horizontal padding

This commit is contained in:
krawieck 2020-09-03 22:14:07 +02:00
parent d8234a671a
commit b2f8e88375
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class Badge extends StatelessWidget {
borderRadius: BorderRadius.all(Radius.circular(5)), borderRadius: BorderRadius.all(Radius.circular(5)),
), ),
child: Padding( child: Padding(
padding: const EdgeInsets.all(4.0), padding: const EdgeInsets.symmetric(vertical: 4, horizontal: 8),
child: child, child: child,
), ),
); );