diff --git a/mobile/lib/pages/all_products_page.dart b/mobile/lib/pages/all_products_page.dart index ab512ed..c14e969 100644 --- a/mobile/lib/pages/all_products_page.dart +++ b/mobile/lib/pages/all_products_page.dart @@ -25,8 +25,7 @@ class ProductListItem extends StatelessWidget { Navigator.of(context) .push(MaterialPageRoute(builder: (context) => productPage)); }, - child: Expanded( - child: Row( + child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Container( @@ -50,7 +49,7 @@ class ProductListItem extends StatelessWidget { width: 100, )) ], - ))), + )), ); } }