Fix focus problem when tab on Login Screen
Revert "fixup! Fix focus problem when tab on Login Screen" This reverts commit c8df6ee66a8b9c55255bb1f30458e4b69664ac4f. Revert "Fix focus problem when tab on Login Screen" This reverts commit 30a14bfebe622dfd3f121f83798990e27239a6ba. Fix focus problem when tab on Login Screen
This commit is contained in:
@@ -40,13 +40,16 @@ abstract class BaseLoginView extends GetWidget<LoginController> {
|
||||
return AutofillGroup(
|
||||
child: Padding(
|
||||
padding: const EdgeInsetsDirectional.symmetric(horizontal: 24),
|
||||
child: Column(
|
||||
children: [
|
||||
buildUserNameInput(context),
|
||||
const SizedBox(height: 24),
|
||||
buildPasswordInput(context),
|
||||
const SizedBox(height: 40),
|
||||
],
|
||||
child: FocusTraversalGroup(
|
||||
policy: WidgetOrderTraversalPolicy(),
|
||||
child: Column(
|
||||
children: [
|
||||
buildUserNameInput(context),
|
||||
const SizedBox(height: 24),
|
||||
buildPasswordInput(context),
|
||||
const SizedBox(height: 40),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user