From 86f203ae55f3fa98b8e09ea4234aa2738b387090 Mon Sep 17 00:00:00 2001 From: krawieck Date: Mon, 7 Sep 2020 16:23:53 +0200 Subject: [PATCH] Change flat buttons to outline buttons --- lib/pages/community.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/pages/community.dart b/lib/pages/community.dart index 67df833..55af78f 100644 --- a/lib/pages/community.dart +++ b/lib/pages/community.dart @@ -420,18 +420,18 @@ class _AboutTab extends StatelessWidget { _Divider(), Padding( padding: const EdgeInsets.symmetric(horizontal: 15, vertical: 0), - child: FlatButton( + child: OutlineButton( shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(10), ), - child: Text('Category: ${community.categoryName}'), + child: Text('${community.categoryName}'), onPressed: goToCategories, ), ), _Divider(), Padding( padding: const EdgeInsets.symmetric(horizontal: 15), - child: FlatButton( + child: OutlineButton( shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(10), ),