From 2f3ac3bc7aceda76cb910c06d0a60911b139f60d Mon Sep 17 00:00:00 2001 From: Meet Janani Date: Tue, 28 Sep 2021 18:54:19 +0530 Subject: [PATCH] :bug: #40 Absence of focus node in credit_card_form.dart => As card number is the first field so it doesn't require focus node. --- lib/credit_card_form.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/credit_card_form.dart b/lib/credit_card_form.dart index 1ea5f28..da10df8 100644 --- a/lib/credit_card_form.dart +++ b/lib/credit_card_form.dart @@ -90,7 +90,6 @@ class _CreditCardFormState extends State { MaskedTextController(mask: '0000'); FocusNode cvvFocusNode = FocusNode(); - FocusNode cardNumberNode = FocusNode(); FocusNode expiryDateNode = FocusNode(); FocusNode cardHolderNode = FocusNode();