File tree Expand file tree Collapse file tree
lib/presentation/signup/widgets Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ Widget _pageOne() {
1414 controller: state.nameController,
1515 onChanged: (value) =>
1616 context.read <SignUpBloc >().add (NameInput (value)),
17+ onEditingComplete: () => FocusScope .of (context).nextFocus (),
1718 ),
1819 SizedBox (height: 34. r),
1920 FormInput (
@@ -23,6 +24,7 @@ Widget _pageOne() {
2324 errorText: state.isEmailUnique ? null : AppStrings .duplicateEmail,
2425 onChanged: (value) =>
2526 context.read <SignUpBloc >().add (EmailInput (value)),
27+ onEditingComplete: () => FocusScope .of (context).nextFocus (),
2628 ),
2729 SizedBox (height: 34. r),
2830 Text (
@@ -283,6 +285,7 @@ Widget _pageFour() {
283285 Svg (AppAssets .person),
284286 ),
285287 ),
288+ onEditingComplete: () => FocusScope .of (context).nextFocus (),
286289 ),
287290 SizedBox (height: 34. r),
288291 TextInput (
@@ -311,6 +314,7 @@ Widget _pageFour() {
311314 onPressed: () =>
312315 context.read <SignUpBloc >().add (const ToggleObscure ()),
313316 ),
317+ onEditingComplete: () => FocusScope .of (context).nextFocus (),
314318 ),
315319 ],
316320 );
You can’t perform that action at this time.
0 commit comments