From 874f5319fd797b28aad50021e8071c2eb9ed1f57 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sat, 22 Mar 2025 07:25:15 -0500 Subject: [PATCH] layout changes --- web/repertory/lib/screens/auth_screen.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/repertory/lib/screens/auth_screen.dart b/web/repertory/lib/screens/auth_screen.dart index 7cc483a2..0495b5b5 100644 --- a/web/repertory/lib/screens/auth_screen.dart +++ b/web/repertory/lib/screens/auth_screen.dart @@ -35,7 +35,7 @@ class _AuthScreenState extends State { child: Padding( padding: const EdgeInsets.all(constants.padding), child: SizedBox( - width: 400, + width: 300, child: Column( mainAxisSize: MainAxisSize.min, mainAxisAlignment: MainAxisAlignment.start, @@ -48,6 +48,7 @@ class _AuthScreenState extends State { ), const SizedBox(height: constants.padding), TextField( + autofocus: true, decoration: InputDecoration(labelText: 'Username'), controller: _userController, ),