2023-11-08 15:42:09 -07:00
|
|
|
library stripe_native_card_field;
|
|
|
|
|
2023-11-14 09:58:49 -07:00
|
|
|
import 'dart:async';
|
|
|
|
import 'card_details.dart';
|
|
|
|
import 'card_provider_icon.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
|
|
|
|
enum CardEntryStep { number, exp, cvc, postal }
|
|
|
|
|
|
|
|
class CardTextField extends StatefulWidget {
|
2023-11-14 15:09:03 -07:00
|
|
|
const CardTextField(
|
|
|
|
{Key? key,
|
|
|
|
required this.onCardDetailsComplete,
|
|
|
|
required this.width,
|
|
|
|
this.height,
|
|
|
|
this.inputDecoration,
|
|
|
|
this.boxDecoration,
|
|
|
|
this.errorBoxDecoration})
|
|
|
|
: super(key: key);
|
2023-11-14 09:58:49 -07:00
|
|
|
|
2023-11-14 15:09:03 -07:00
|
|
|
final InputDecoration? inputDecoration; // TODO unapplied style
|
|
|
|
final BoxDecoration? boxDecoration; // TODO unapplied style
|
|
|
|
final BoxDecoration? errorBoxDecoration; // TODO unapplied style
|
2023-11-14 09:58:49 -07:00
|
|
|
final double width;
|
2023-11-14 15:09:03 -07:00
|
|
|
final void Function(CardDetails) onCardDetailsComplete;
|
2023-11-14 09:58:49 -07:00
|
|
|
final double? height;
|
|
|
|
|
|
|
|
@override
|
2023-11-14 15:09:03 -07:00
|
|
|
State<CardTextField> createState() => CardTextFieldState();
|
2023-11-14 09:58:49 -07:00
|
|
|
}
|
|
|
|
|
2023-11-14 15:09:03 -07:00
|
|
|
@visibleForTesting
|
|
|
|
class CardTextFieldState extends State<CardTextField> {
|
2023-11-14 09:58:49 -07:00
|
|
|
late TextEditingController _cardNumberController;
|
|
|
|
late TextEditingController _expirationController;
|
|
|
|
late TextEditingController _securityCodeController;
|
|
|
|
late TextEditingController _postalCodeController;
|
|
|
|
|
2023-11-14 15:09:03 -07:00
|
|
|
late FocusNode cardNumberFocusNode;
|
|
|
|
late FocusNode expirationFocusNode;
|
|
|
|
late FocusNode securityCodeFocusNode;
|
|
|
|
late FocusNode postalCodeFocusNode;
|
2023-11-14 09:58:49 -07:00
|
|
|
|
|
|
|
final double _cardFieldWidth = 180.0;
|
|
|
|
final double _expirationFieldWidth = 70.0;
|
|
|
|
final double _securityFieldWidth = 40.0;
|
|
|
|
final double _postalFieldWidth = 100.0;
|
|
|
|
late final double _internalFieldWidth;
|
|
|
|
late final bool _isWideFormat;
|
|
|
|
|
|
|
|
bool _showBorderError = false;
|
|
|
|
String? _validationErrorText;
|
|
|
|
|
|
|
|
final _currentCardEntryStepController = StreamController<CardEntryStep>();
|
|
|
|
final _horizontalScrollController = ScrollController();
|
|
|
|
CardEntryStep _currentStep = CardEntryStep.number;
|
|
|
|
|
|
|
|
final _formFieldKey = GlobalKey<FormState>();
|
|
|
|
|
|
|
|
final CardDetails _cardDetails = CardDetails.blank();
|
|
|
|
|
|
|
|
final normalBoxDecoration = BoxDecoration(
|
2023-11-14 15:09:03 -07:00
|
|
|
color: const Color(0xfff6f9fc),
|
2023-11-14 09:58:49 -07:00
|
|
|
border: Border.all(
|
2023-11-14 15:09:03 -07:00
|
|
|
color: const Color(0xffdde0e3),
|
2023-11-14 09:58:49 -07:00
|
|
|
width: 2.0,
|
|
|
|
),
|
|
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
|
|
);
|
|
|
|
|
|
|
|
final errorBoxDecoration = BoxDecoration(
|
2023-11-14 15:09:03 -07:00
|
|
|
color: const Color(0xfff6f9fc),
|
2023-11-14 09:58:49 -07:00
|
|
|
border: Border.all(
|
|
|
|
color: Colors.red,
|
|
|
|
width: 2.0,
|
|
|
|
),
|
|
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
|
|
);
|
|
|
|
|
2023-11-14 15:09:03 -07:00
|
|
|
final TextStyle _errorTextStyle = const TextStyle(color: Colors.red, fontSize: 14);
|
|
|
|
final TextStyle _normalTextStyle = const TextStyle(color: Colors.black87, fontSize: 14);
|
2023-11-14 09:58:49 -07:00
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
_cardNumberController = TextEditingController();
|
|
|
|
_expirationController = TextEditingController();
|
|
|
|
_securityCodeController = TextEditingController();
|
|
|
|
_postalCodeController = TextEditingController();
|
|
|
|
|
2023-11-14 15:09:03 -07:00
|
|
|
cardNumberFocusNode = FocusNode();
|
|
|
|
expirationFocusNode = FocusNode();
|
|
|
|
securityCodeFocusNode = FocusNode();
|
|
|
|
postalCodeFocusNode = FocusNode();
|
2023-11-14 09:58:49 -07:00
|
|
|
|
|
|
|
_currentCardEntryStepController.stream.listen(
|
|
|
|
_onStepChange,
|
|
|
|
);
|
|
|
|
RawKeyboard.instance.addListener(_backspaceTransitionListener);
|
|
|
|
_isWideFormat = widget.width >= 450;
|
|
|
|
if (_isWideFormat) {
|
|
|
|
_internalFieldWidth = widget.width + 80;
|
|
|
|
} else {
|
|
|
|
_internalFieldWidth = _cardFieldWidth + _expirationFieldWidth + _securityFieldWidth + _postalFieldWidth + 80;
|
|
|
|
}
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
_cardNumberController.dispose();
|
|
|
|
_expirationController.dispose();
|
|
|
|
_securityCodeController.dispose();
|
|
|
|
|
2023-11-14 15:09:03 -07:00
|
|
|
cardNumberFocusNode.dispose();
|
|
|
|
expirationFocusNode.dispose();
|
|
|
|
securityCodeFocusNode.dispose();
|
2023-11-14 09:58:49 -07:00
|
|
|
|
|
|
|
RawKeyboard.instance.removeListener(_backspaceTransitionListener);
|
|
|
|
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
Form(
|
|
|
|
key: _formFieldKey,
|
|
|
|
child: GestureDetector(
|
|
|
|
onTap: () {
|
|
|
|
// Focuses to the current field
|
|
|
|
_currentCardEntryStepController.add(_currentStep);
|
|
|
|
},
|
|
|
|
child: Container(
|
|
|
|
width: widget.width,
|
|
|
|
height: widget.height ?? 60.0,
|
|
|
|
decoration: _showBorderError ? errorBoxDecoration : normalBoxDecoration,
|
|
|
|
child: ClipRect(
|
|
|
|
child: IgnorePointer(
|
|
|
|
child: SingleChildScrollView(
|
|
|
|
controller: _horizontalScrollController,
|
|
|
|
scrollDirection: Axis.horizontal,
|
|
|
|
child: SizedBox(
|
|
|
|
width: _internalFieldWidth,
|
|
|
|
height: widget.height ?? 60.0,
|
|
|
|
child: Row(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 6.0),
|
|
|
|
child: CardProviderIcon(
|
|
|
|
cardDetails: _cardDetails,
|
|
|
|
),
|
|
|
|
),
|
2023-11-14 15:09:03 -07:00
|
|
|
SizedBox(
|
2023-11-14 09:58:49 -07:00
|
|
|
width: _cardFieldWidth,
|
|
|
|
child: TextFormField(
|
2023-11-14 15:09:03 -07:00
|
|
|
key: const Key('card_field'),
|
|
|
|
focusNode: cardNumberFocusNode,
|
2023-11-14 09:58:49 -07:00
|
|
|
controller: _cardNumberController,
|
|
|
|
keyboardType: TextInputType.number,
|
|
|
|
style: _isRedText([ValidState.invalidCard, ValidState.missingCard, ValidState.blank])
|
|
|
|
? _errorTextStyle
|
|
|
|
: _normalTextStyle,
|
|
|
|
validator: (content) {
|
|
|
|
if (content == null || content.isEmpty) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
_cardDetails.cardNumber = content;
|
|
|
|
if (_cardDetails.validState == ValidState.invalidCard) {
|
|
|
|
_setValidationState('You card number is invalid.');
|
|
|
|
} else if (_cardDetails.validState == ValidState.missingCard) {
|
|
|
|
_setValidationState('Your card number is incomplete.');
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
onChanged: (str) {
|
|
|
|
final numbers = str.replaceAll(' ', '');
|
|
|
|
setState(() => _cardDetails.cardNumber = numbers);
|
|
|
|
if (str.length <= _cardDetails.maxINNLength) {
|
|
|
|
_cardDetails.detectCardProvider();
|
|
|
|
}
|
|
|
|
if (numbers.length == 16) {
|
|
|
|
_currentCardEntryStepController.add(CardEntryStep.exp);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
inputFormatters: [
|
|
|
|
LengthLimitingTextInputFormatter(19),
|
|
|
|
FilteringTextInputFormatter.allow(RegExp('[0-9 ]')),
|
|
|
|
CardNumberInputFormatter(),
|
|
|
|
],
|
2023-11-14 15:09:03 -07:00
|
|
|
decoration: const InputDecoration(
|
2023-11-14 09:58:49 -07:00
|
|
|
hintText: 'Card number',
|
|
|
|
fillColor: Colors.transparent,
|
|
|
|
border: InputBorder.none,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
if (_isWideFormat)
|
|
|
|
Flexible(
|
|
|
|
fit: FlexFit.loose,
|
|
|
|
// fit: _currentStep == CardEntryStep.number ? FlexFit.loose : FlexFit.tight,
|
|
|
|
child: AnimatedContainer(
|
|
|
|
curve: Curves.easeOut,
|
|
|
|
duration: const Duration(milliseconds: 400),
|
|
|
|
constraints: _currentStep == CardEntryStep.number
|
2023-11-14 15:09:03 -07:00
|
|
|
? BoxConstraints.loose(const Size(400.0, 1.0))
|
|
|
|
: BoxConstraints.tight(const Size(0, 0)))),
|
2023-11-14 09:58:49 -07:00
|
|
|
|
|
|
|
// Spacer(flex: _currentStep == CardEntryStep.number ? 100 : 1),
|
|
|
|
AnimatedContainer(
|
|
|
|
duration: const Duration(milliseconds: 125),
|
|
|
|
width: _expirationFieldWidth,
|
|
|
|
child: TextFormField(
|
2023-11-14 15:09:03 -07:00
|
|
|
key: const Key('expiration_field'),
|
|
|
|
focusNode: expirationFocusNode,
|
2023-11-14 09:58:49 -07:00
|
|
|
controller: _expirationController,
|
2023-11-14 15:09:03 -07:00
|
|
|
style: _isRedText([
|
|
|
|
ValidState.dateTooLate,
|
|
|
|
ValidState.dateTooEarly,
|
|
|
|
ValidState.missingDate,
|
|
|
|
ValidState.invalidMonth
|
|
|
|
])
|
|
|
|
? _errorTextStyle
|
|
|
|
: _normalTextStyle,
|
2023-11-14 09:58:49 -07:00
|
|
|
validator: (content) {
|
|
|
|
if (content == null || content.isEmpty) {
|
|
|
|
return null;
|
|
|
|
}
|
2023-11-14 15:09:03 -07:00
|
|
|
setState(() => _cardDetails.expirationString = content);
|
2023-11-14 09:58:49 -07:00
|
|
|
if (_cardDetails.validState == ValidState.dateTooEarly) {
|
|
|
|
_setValidationState('Your card\'s expiration date is in the past.');
|
|
|
|
} else if (_cardDetails.validState == ValidState.dateTooLate) {
|
|
|
|
_setValidationState('Your card\'s expiration year is invalid.');
|
|
|
|
} else if (_cardDetails.validState == ValidState.missingDate) {
|
|
|
|
_setValidationState('You must include your card\'s expiration date.');
|
2023-11-14 15:09:03 -07:00
|
|
|
} else if (_cardDetails.validState == ValidState.invalidMonth) {
|
|
|
|
_setValidationState('Invalid expiration month.');
|
2023-11-14 09:58:49 -07:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
onChanged: (str) {
|
2023-11-14 15:09:03 -07:00
|
|
|
setState(() => _cardDetails.expirationString = str);
|
2023-11-14 09:58:49 -07:00
|
|
|
if (str.length == 5) {
|
|
|
|
_currentCardEntryStepController.add(CardEntryStep.cvc);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
inputFormatters: [
|
|
|
|
LengthLimitingTextInputFormatter(5),
|
|
|
|
FilteringTextInputFormatter.allow(RegExp('[0-9/]')),
|
|
|
|
CardExpirationFormatter(),
|
|
|
|
],
|
2023-11-14 15:09:03 -07:00
|
|
|
decoration: const InputDecoration(
|
2023-11-14 09:58:49 -07:00
|
|
|
hintText: 'MM/YY',
|
|
|
|
fillColor: Colors.transparent,
|
|
|
|
border: InputBorder.none,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
AnimatedContainer(
|
|
|
|
duration: const Duration(milliseconds: 250),
|
|
|
|
width: _securityFieldWidth,
|
|
|
|
child: TextFormField(
|
2023-11-14 15:09:03 -07:00
|
|
|
key: const Key('security_field'),
|
|
|
|
focusNode: securityCodeFocusNode,
|
2023-11-14 09:58:49 -07:00
|
|
|
controller: _securityCodeController,
|
|
|
|
style: _isRedText([ValidState.invalidCVC, ValidState.missingCVC])
|
|
|
|
? _errorTextStyle
|
|
|
|
: _normalTextStyle,
|
|
|
|
validator: (content) {
|
|
|
|
if (content == null || content.isEmpty) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
setState(() => _cardDetails.securityCode = int.tryParse(content));
|
|
|
|
if (_cardDetails.validState == ValidState.invalidCVC) {
|
|
|
|
_setValidationState('Your card\'s security code is invalid.');
|
|
|
|
} else if (_cardDetails.validState == ValidState.missingCVC) {
|
|
|
|
_setValidationState('You card\'s security code is incomplete.');
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
onChanged: (str) {
|
2023-11-14 15:09:03 -07:00
|
|
|
setState(() => _cardDetails.expirationString = str);
|
2023-11-14 09:58:49 -07:00
|
|
|
if (str.length == _cardDetails.provider?.cvcLength) {
|
|
|
|
_currentCardEntryStepController.add(CardEntryStep.postal);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
inputFormatters: [
|
|
|
|
LengthLimitingTextInputFormatter(
|
|
|
|
_cardDetails.provider == null ? 4 : _cardDetails.provider!.cvcLength),
|
|
|
|
FilteringTextInputFormatter.allow(RegExp('[0-9]')),
|
|
|
|
],
|
|
|
|
decoration: const InputDecoration(
|
|
|
|
hintText: 'CVC',
|
|
|
|
fillColor: Colors.transparent,
|
|
|
|
border: InputBorder.none,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
AnimatedContainer(
|
|
|
|
duration: const Duration(milliseconds: 250),
|
|
|
|
width: _postalFieldWidth,
|
|
|
|
child: TextFormField(
|
2023-11-14 15:09:03 -07:00
|
|
|
key: const Key('postal_field'),
|
|
|
|
focusNode: postalCodeFocusNode,
|
2023-11-14 09:58:49 -07:00
|
|
|
controller: _postalCodeController,
|
|
|
|
style: _isRedText([ValidState.invalidZip, ValidState.missingZip])
|
|
|
|
? _errorTextStyle
|
|
|
|
: _normalTextStyle,
|
|
|
|
validator: (content) {
|
|
|
|
if (content == null || content.isEmpty) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
setState(() => _cardDetails.postalCode = content);
|
|
|
|
|
|
|
|
if (_cardDetails.validState == ValidState.invalidZip) {
|
|
|
|
_setValidationState('The postal code you entered is not correct.');
|
|
|
|
} else if (_cardDetails.validState == ValidState.missingZip) {
|
|
|
|
_setValidationState('You must enter your card\'s postal code.');
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
onChanged: (str) {
|
|
|
|
setState(() => _cardDetails.postalCode = str);
|
|
|
|
},
|
|
|
|
onFieldSubmitted: (_) {
|
|
|
|
_validateFields();
|
2023-11-14 15:09:03 -07:00
|
|
|
widget.onCardDetailsComplete(_cardDetails);
|
2023-11-14 09:58:49 -07:00
|
|
|
},
|
|
|
|
decoration: InputDecoration(
|
|
|
|
hintText: _currentStep == CardEntryStep.number ? '' : 'Postal Code',
|
|
|
|
fillColor: Colors.transparent,
|
|
|
|
border: InputBorder.none,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
AnimatedOpacity(
|
|
|
|
duration: const Duration(milliseconds: 525),
|
|
|
|
opacity: _validationErrorText == null ? 0.0 : 1.0,
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 8.0, left: 14.0),
|
|
|
|
child: Text(
|
|
|
|
_validationErrorText ?? '',
|
|
|
|
style: const TextStyle(color: Colors.red),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool _isRedText(List<ValidState> args) {
|
|
|
|
return _showBorderError && args.contains(_cardDetails.validState);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _setValidationState(String? text) {
|
|
|
|
setState(() {
|
|
|
|
_validationErrorText = text;
|
|
|
|
_showBorderError = text != null;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void _validateFields() {
|
|
|
|
_validationErrorText = null;
|
|
|
|
_formFieldKey.currentState!.validate();
|
|
|
|
// Clear up validation state if everything is valid
|
|
|
|
if (_validationErrorText == null) {
|
|
|
|
_setValidationState(null);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _scrollRow(CardEntryStep step) {
|
2023-11-14 15:09:03 -07:00
|
|
|
const dur = Duration(milliseconds: 150);
|
|
|
|
const cur = Curves.easeOut;
|
2023-11-14 09:58:49 -07:00
|
|
|
switch (step) {
|
|
|
|
case CardEntryStep.number:
|
|
|
|
_horizontalScrollController.animateTo(0.0, duration: dur, curve: cur);
|
|
|
|
break;
|
|
|
|
case CardEntryStep.exp:
|
|
|
|
_horizontalScrollController.animateTo(_cardFieldWidth / 2, duration: dur, curve: cur);
|
|
|
|
break;
|
|
|
|
case CardEntryStep.cvc:
|
|
|
|
_horizontalScrollController.animateTo(_cardFieldWidth / 2 + _expirationFieldWidth, duration: dur, curve: cur);
|
|
|
|
break;
|
|
|
|
case CardEntryStep.postal:
|
|
|
|
_horizontalScrollController.animateTo(_cardFieldWidth / 2 + _expirationFieldWidth + _securityFieldWidth,
|
|
|
|
duration: dur, curve: cur);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _onStepChange(CardEntryStep step) {
|
|
|
|
if (_currentStep.index < step.index) {
|
|
|
|
_validateFields();
|
|
|
|
} else if (_currentStep != step) {
|
|
|
|
_setValidationState(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
setState(() {
|
|
|
|
_currentStep = step;
|
|
|
|
});
|
|
|
|
switch (step) {
|
|
|
|
case CardEntryStep.number:
|
2023-11-14 15:09:03 -07:00
|
|
|
cardNumberFocusNode.requestFocus();
|
2023-11-14 09:58:49 -07:00
|
|
|
break;
|
|
|
|
case CardEntryStep.exp:
|
2023-11-14 15:09:03 -07:00
|
|
|
expirationFocusNode.requestFocus();
|
2023-11-14 09:58:49 -07:00
|
|
|
break;
|
|
|
|
case CardEntryStep.cvc:
|
2023-11-14 15:09:03 -07:00
|
|
|
securityCodeFocusNode.requestFocus();
|
2023-11-14 09:58:49 -07:00
|
|
|
break;
|
|
|
|
case CardEntryStep.postal:
|
2023-11-14 15:09:03 -07:00
|
|
|
postalCodeFocusNode.requestFocus();
|
2023-11-14 09:58:49 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!_isWideFormat) {
|
|
|
|
_scrollRow(step);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _backspaceTransitionListener(RawKeyEvent value) {
|
|
|
|
if (!value.isKeyPressed(LogicalKeyboardKey.backspace)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
switch (_currentStep) {
|
|
|
|
case CardEntryStep.number:
|
|
|
|
break;
|
|
|
|
case CardEntryStep.exp:
|
|
|
|
final expStr = _expirationController.text;
|
|
|
|
if (expStr.isNotEmpty) break;
|
|
|
|
_currentCardEntryStepController.add(CardEntryStep.number);
|
|
|
|
String numStr = _cardNumberController.text;
|
|
|
|
_cardNumberController.text = numStr.substring(0, numStr.length - 1);
|
|
|
|
break;
|
|
|
|
case CardEntryStep.cvc:
|
|
|
|
final cvcStr = _securityCodeController.text;
|
|
|
|
if (cvcStr.isNotEmpty) break;
|
|
|
|
_currentCardEntryStepController.add(CardEntryStep.exp);
|
|
|
|
final expStr = _expirationController.text;
|
|
|
|
_expirationController.text = expStr.substring(0, expStr.length - 1);
|
|
|
|
case CardEntryStep.postal:
|
|
|
|
final String postalStr = _postalCodeController.text;
|
|
|
|
if (postalStr.isNotEmpty) break;
|
|
|
|
_currentCardEntryStepController.add(CardEntryStep.cvc);
|
|
|
|
final String cvcStr = _securityCodeController.text;
|
|
|
|
_securityCodeController.text = cvcStr.substring(0, cvcStr.length - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class CardNumberInputFormatter implements TextInputFormatter {
|
|
|
|
@override
|
|
|
|
TextEditingValue formatEditUpdate(TextEditingValue oldValue, TextEditingValue newValue) {
|
|
|
|
String cardNum = newValue.text;
|
|
|
|
if (cardNum.length <= 4) return newValue;
|
|
|
|
|
|
|
|
cardNum = cardNum.replaceAll(' ', '');
|
|
|
|
StringBuffer buffer = StringBuffer();
|
|
|
|
|
|
|
|
for (int i = 0; i < cardNum.length; i++) {
|
|
|
|
buffer.write(cardNum[i]);
|
|
|
|
int nonZeroIndex = i + 1;
|
|
|
|
if (nonZeroIndex % 4 == 0 && nonZeroIndex != cardNum.length) {
|
|
|
|
buffer.write(' ');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return newValue.copyWith(text: buffer.toString(), selection: TextSelection.collapsed(offset: buffer.length));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class CardExpirationFormatter implements TextInputFormatter {
|
|
|
|
@override
|
|
|
|
TextEditingValue formatEditUpdate(TextEditingValue oldValue, TextEditingValue newValue) {
|
|
|
|
String cardExp = newValue.text;
|
|
|
|
if (cardExp.length == 1) {
|
|
|
|
if (cardExp[0] == '0' || cardExp[0] == '1') {
|
|
|
|
return newValue;
|
|
|
|
} else {
|
|
|
|
cardExp = '0$cardExp';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (cardExp.length == 2 && oldValue.text.length == 3) return newValue;
|
|
|
|
// Auto delete the slash on backspace
|
|
|
|
// if (cardExp.length == 3 && oldValue.text.length == 4 && cardExp[2] == '/') {
|
|
|
|
// return newValue.copyWith(
|
|
|
|
// text: cardExp.substring(0, 2), selection: TextSelection.collapsed(offset: cardExp.length - 1));
|
|
|
|
// }
|
|
|
|
|
|
|
|
cardExp = cardExp.replaceAll('/', '');
|
|
|
|
StringBuffer buffer = StringBuffer();
|
|
|
|
|
|
|
|
for (int i = 0; i < cardExp.length; i++) {
|
|
|
|
buffer.write(cardExp[i]);
|
|
|
|
int nonZeroIndex = i + 1;
|
|
|
|
if (nonZeroIndex == 2) {
|
|
|
|
buffer.write('/');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return newValue.copyWith(text: buffer.toString(), selection: TextSelection.collapsed(offset: buffer.length));
|
|
|
|
}
|
2023-11-08 15:42:09 -07:00
|
|
|
}
|