Make buttons more round (and stylish )

This commit is contained in:
krawieck 2020-09-06 00:39:38 +02:00
parent 51100c297c
commit 48a0851e06
1 changed files with 6 additions and 0 deletions

View File

@ -421,6 +421,9 @@ class _AboutTab extends StatelessWidget {
Padding(
padding: const EdgeInsets.symmetric(horizontal: 15, vertical: 0),
child: FlatButton(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
child: Text('Category: ${community.categoryName}'),
onPressed: goToCategories,
),
@ -429,6 +432,9 @@ class _AboutTab extends StatelessWidget {
Padding(
padding: const EdgeInsets.symmetric(horizontal: 15),
child: FlatButton(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
child: Text('Modlog'),
onPressed: goToModlog,
),