Skip to content

Commit

Permalink
feat(topup modal): moves the country dropdown just below the credit c…
Browse files Browse the repository at this point in the history
…ard field PE-4397
  • Loading branch information
matibat committed Sep 27, 2023
1 parent 731ef3b commit 9cfad01
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lib/turbo/topup/views/topup_payment_form.dart
Original file line number Diff line number Diff line change
Expand Up @@ -429,13 +429,6 @@ class TurboPaymentFormViewState extends State<TurboPaymentFormView> {
nameOnCardTextField(),
],
),
Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
countryTextField(theme),
],
),
const SizedBox(height: 16),
Padding(
padding: const EdgeInsets.only(bottom: 4, right: 16),
child: Align(
Expand Down Expand Up @@ -492,6 +485,13 @@ class TurboPaymentFormViewState extends State<TurboPaymentFormView> {
),
),
const SizedBox(height: 16),
Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
countryTextField(theme),
],
),
const SizedBox(height: 16),
Row(children: [promoCodeLabel()]),
ScreenTypeLayout.builder(
mobile: (context) => Row(children: [
Expand Down

0 comments on commit 9cfad01

Please sign in to comment.