Swap verify/import buttons

This commit is contained in:
Hillel Coren 2022-05-20 11:44:18 +03:00
parent 6ebd29b0ff
commit 22f8856732
1 changed files with 7 additions and 7 deletions

View File

@ -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),
),
),
],