diff --git a/apps/mobile/packages/features/client/billing/lib/src/presentation/widgets/invoice_history_section.dart b/apps/mobile/packages/features/client/billing/lib/src/presentation/widgets/invoice_history_section.dart index 053ec29d..d42bda3f 100644 --- a/apps/mobile/packages/features/client/billing/lib/src/presentation/widgets/invoice_history_section.dart +++ b/apps/mobile/packages/features/client/billing/lib/src/presentation/widgets/invoice_history_section.dart @@ -22,22 +22,7 @@ class InvoiceHistorySection extends StatelessWidget { t.client_billing.invoice_history, style: UiTypography.title2b.textPrimary, ), - GestureDetector( - onTap: () {}, - child: Row( - children: [ - Text( - t.client_billing.view_all, - style: UiTypography.footnote2b.textPrimary, - ), - const Icon( - UiIcons.chevronRight, - size: 16, - color: UiColors.primary, - ), - ], - ), - ), + const SizedBox.shrink(), ], ), const SizedBox(height: UiConstants.space2), @@ -117,8 +102,7 @@ class _InvoiceItem extends StatelessWidget { _StatusBadge(status: invoice.status), ], ), - const SizedBox(width: UiConstants.space2), - const Icon(UiIcons.download, size: 16, color: UiColors.iconSecondary), + const SizedBox.shrink(), ], ), ); diff --git a/apps/mobile/packages/features/client/billing/lib/src/presentation/widgets/payment_method_card.dart b/apps/mobile/packages/features/client/billing/lib/src/presentation/widgets/payment_method_card.dart index 40715687..6c846212 100644 --- a/apps/mobile/packages/features/client/billing/lib/src/presentation/widgets/payment_method_card.dart +++ b/apps/mobile/packages/features/client/billing/lib/src/presentation/widgets/payment_method_card.dart @@ -69,29 +69,13 @@ class _PaymentMethodCardState extends State { Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ - Text( - t.client_billing.payment_method, - style: UiTypography.title2b.textPrimary, - ), - GestureDetector( - onTap: () {}, - child: Row( - children: [ - const Icon( - UiIcons.add, - size: 14, - color: UiColors.primary, - ), - const SizedBox(width: 4), - Text( - t.client_billing.add_payment, - style: UiTypography.footnote2b.textPrimary, - ), - ], - ), - ), - ], + Text( + t.client_billing.payment_method, + style: UiTypography.title2b.textPrimary, ), + const SizedBox.shrink(), + ], + ), if (account != null) ...[ const SizedBox(height: UiConstants.space3), Container( diff --git a/apps/mobile/packages/features/client/billing/lib/src/presentation/widgets/savings_card.dart b/apps/mobile/packages/features/client/billing/lib/src/presentation/widgets/savings_card.dart index 18ea1dfd..cc455c67 100644 --- a/apps/mobile/packages/features/client/billing/lib/src/presentation/widgets/savings_card.dart +++ b/apps/mobile/packages/features/client/billing/lib/src/presentation/widgets/savings_card.dart @@ -50,25 +50,7 @@ class SavingsCard extends StatelessWidget { style: UiTypography.footnote2r.textSecondary, ), const SizedBox(height: UiConstants.space2), - SizedBox( - height: 28, - child: ElevatedButton( - onPressed: () {}, - style: ElevatedButton.styleFrom( - backgroundColor: UiColors.primary, - foregroundColor: UiColors.white, - elevation: 0, - padding: const EdgeInsets.symmetric( - horizontal: UiConstants.space3, - ), - shape: RoundedRectangleBorder( - borderRadius: UiConstants.radiusMd, - ), - textStyle: UiTypography.footnote2b, - ), - child: Text(t.client_billing.view_details), - ), - ), + const SizedBox.shrink(), ], ), ),