Skip to content

Commit 266add3

Browse files
committed
Added screenshots
1 parent c2475d8 commit 266add3

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

example/lib/main.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ class _HomePageState extends State<HomePage> {
128128
border: const UnderlineInputBorder(),
129129
labelText: 'Expiry Month',
130130
),
131-
onSaved: (String value) => _expiryMonth = int.tryParse(value),
131+
onSaved: (String value) =>
132+
_expiryMonth = int.tryParse(value),
132133
),
133134
),
134135
_horizontalSizeBox,
@@ -138,7 +139,8 @@ class _HomePageState extends State<HomePage> {
138139
border: const UnderlineInputBorder(),
139140
labelText: 'Expiry Year',
140141
),
141-
onSaved: (String value) => _expiryYear = int.tryParse(value),
142+
onSaved: (String value) =>
143+
_expiryYear = int.tryParse(value),
142144
),
143145
)
144146
],

lib/src/widgets/pin_widget.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class _PinWidgetState extends BaseState<PinWidget> {
3434
heightBox,
3535
const Text(
3636
'To confirm you\'re the owner of this card, please '
37-
'enter your card pin.',
37+
'enter your card pin.',
3838
textAlign: TextAlign.center,
3939
style: const TextStyle(
4040
fontWeight: FontWeight.w500,

screenshots/bank_payment.png

155 KB
Loading

screenshots/card_payment.png

170 KB
Loading

0 commit comments

Comments
 (0)