Skip to content

Commit

Permalink
Remove the price label for paid apps
Browse files Browse the repository at this point in the history
  • Loading branch information
beastoin committed Dec 10, 2024
1 parent c5060de commit 7a6475a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions app/lib/pages/apps/list_item.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
],
),
],
Expand Down
18 changes: 9 additions & 9 deletions app/lib/pages/apps/widgets/app_section_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
],
),
)
Expand Down

0 comments on commit 7a6475a

Please sign in to comment.