File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff 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 ],
Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments