diff --git a/app/lib/pages/apps/list_item.dart b/app/lib/pages/apps/list_item.dart index 532d912110..cae88e0bde 100644 --- a/app/lib/pages/apps/list_item.dart +++ b/app/lib/pages/apps/list_item.dart @@ -108,15 +108,15 @@ class AppListItem extends StatelessWidget { ), ) : Container(), - app.isPaid - ? Padding( - padding: const EdgeInsets.only(top: 8), - child: Text( - app.getFormattedPrice(), - style: TextStyle(color: Colors.grey.shade400, fontSize: 14), - ), - ) - : const SizedBox(), + //app.isPaid + // ? Padding( + // padding: const EdgeInsets.only(top: 8), + // child: Text( + // app.getFormattedPrice(), + // style: TextStyle(color: Colors.grey.shade400, fontSize: 14), + // ), + // ) + // : const SizedBox(), ], ), ], diff --git a/app/lib/pages/apps/widgets/app_section_card.dart b/app/lib/pages/apps/widgets/app_section_card.dart index b04c9eef7c..b10c4b0497 100644 --- a/app/lib/pages/apps/widgets/app_section_card.dart +++ b/app/lib/pages/apps/widgets/app_section_card.dart @@ -140,15 +140,15 @@ class SectionAppItemCard extends StatelessWidget { ], ) : const SizedBox(), - app.isPaid - ? Padding( - padding: const EdgeInsets.only(top: 4.0), - child: Text( - app.getFormattedPrice(), - style: TextStyle(color: Colors.grey.shade400, fontSize: 14), - ), - ) - : const SizedBox(), + //app.isPaid + // ? Padding( + // padding: const EdgeInsets.only(top: 4.0), + // child: Text( + // app.getFormattedPrice(), + // style: TextStyle(color: Colors.grey.shade400, fontSize: 14), + // ), + // ) + // : const SizedBox(), ], ), )