diff --git a/lib/pages/home/home_page.dart b/lib/pages/home/home_page.dart index ffe695e..6f489df 100644 --- a/lib/pages/home/home_page.dart +++ b/lib/pages/home/home_page.dart @@ -1079,7 +1079,8 @@ class _HomePageState extends BaseStoreState _buttonTitleRow(icon, title, {onPressed}) { return Expanded( - child: GestureDetector( + child: CupertinoButton( + padding: EdgeInsets.zero, child: Column( children: [ Container( @@ -1106,7 +1107,7 @@ class _HomePageState extends BaseStoreState ) ], ), - onTap: () { + onPressed: () { if (onPressed != null) { onPressed(); }