Skip to content

Commit 35957c6

Browse files
committed
fixed minor loading bug
1 parent 2e200eb commit 35957c6

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

lib/ui/auth/auth_page.dart

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,6 @@ class _AuthPageState extends State<AuthPage> {
160160
),
161161
],
162162
),
163-
floatingActionButton: FloatingActionButton(
164-
onPressed: () => log(window.width.toString()),
165-
),
166163
);
167164
}
168165

@@ -226,11 +223,6 @@ class _AuthPageState extends State<AuthPage> {
226223
_authLogoSection(),
227224
_authFields(),
228225
_authActionButtons(),
229-
if (_isLoading)
230-
const Padding(
231-
padding: EdgeInsets.only(top: 20),
232-
child: Center(child: CircularProgressIndicator()),
233-
),
234226
],
235227
),
236228
);
@@ -241,6 +233,7 @@ class _AuthPageState extends State<AuthPage> {
241233
alignment: Alignment.topCenter,
242234
child: Column(
243235
children: [
236+
SizedBox(height: 20),
244237
Image.asset('assets/logo.png', height: 150),
245238
const SizedBox(height: 20),
246239
Text(

0 commit comments

Comments
 (0)