From 22f885673232b0376bacab6ec8ad95c5edae0def Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Fri, 20 May 2022 11:44:18 +0300 Subject: [PATCH] Swap verify/import buttons --- .../company_gateway/view/company_gateway_view.dart | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/ui/company_gateway/view/company_gateway_view.dart b/lib/ui/company_gateway/view/company_gateway_view.dart index 9db02a34d..cae0c457c 100644 --- a/lib/ui/company_gateway/view/company_gateway_view.dart +++ b/lib/ui/company_gateway/view/company_gateway_view.dart @@ -158,18 +158,18 @@ class _CompanyGatewayOverview extends StatelessWidget { children: [ Expanded( child: AppButton( - iconData: isDesktop(context) ? MdiIcons.import : null, - label: localization.importCustomers.toUpperCase(), - onPressed: () => viewModel.onStripeImportPressed(context), + iconData: + isDesktop(context) ? MdiIcons.checkCircleOutline : null, + label: localization.verifyCustomers.toUpperCase(), + onPressed: () => viewModel.onStripeVerifyPressed(context), ), ), SizedBox(width: kTableColumnGap), Expanded( child: AppButton( - iconData: - isDesktop(context) ? MdiIcons.checkCircleOutline : null, - label: localization.verifyCustomers.toUpperCase(), - onPressed: () => viewModel.onStripeVerifyPressed(context), + iconData: isDesktop(context) ? MdiIcons.import : null, + label: localization.importCustomers.toUpperCase(), + onPressed: () => viewModel.onStripeImportPressed(context), ), ), ],