flutter_stripe - change CardFormField labels / text color

1.7k Views Asked by At

is there a way to change CardFormField labels & text color?

CardFormField(
    backgroundColor: Colors.black,
    onCardChanged: (CardFieldInputDetails? change) {
        var completed = change != null && change.complete;
    },
    controller: controller,
)

CardFormField got a dark theme:

labels & texts are white & dark keyboard. i set black background to see labels.

other fields in screen got light theme & light keyboard background

dark CardFormField (Card number field focus):

enter image description here

light keyboard and text (Full Name field focus):

enter image description here

1

There are 1 best solutions below

0
On

https://pub.dev/documentation/flutter_stripe/latest/flutter_stripe/CardFormField/style.html

This is the official update from stripe. It is mentioned that we can't change any field other than background colour in iOS but it works in android.