flutter-stripe / flutter_stripe

Flutter SDK for Stripe.
https://pub.dev/packages/flutter_stripe
921 stars 504 forks source link

CardFormField fields out of screen and unclickable #1599

Open SaloniSS opened 6 months ago

SaloniSS commented 6 months ago

Describe the bug Some CardFormField fields out of screen and cannot be clicked

Smartphone / tablet

image

Code

Container(
  margin: EdgeInsets.symmetric(vertical: 8.0),
  child: CardFormField(
    enablePostalCode: true,
    onCardChanged: (response) {
      if (response != null && response.complete) {
        if (mounted) {
          setState(() {
            card = response;
          });
        }
      }
    },
  ),
),
yazanAboAlaynin commented 3 months ago

when this will be fixed it happened to me also.

francistl commented 3 months ago

We're also seeing this issue. Was a workaround identified in the meantime?