From d256a27a214f92db83835f1d10aaad8911f39f7d Mon Sep 17 00:00:00 2001 From: MaximusAshraf <50173497+MaximusAshraf@users.noreply.github.com> Date: Tue, 17 Jan 2023 10:32:51 +0200 Subject: [PATCH] comment sign up button in login form --- lib/views/pages/login.dart | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/views/pages/login.dart b/lib/views/pages/login.dart index 9d06692b..ad8554cd 100644 --- a/lib/views/pages/login.dart +++ b/lib/views/pages/login.dart @@ -140,16 +140,16 @@ class _LoginState extends State { } }, ), - SizedBox(height: 140 * AppStyle.getScaleFactor(context),), - AOutLinedButton( - text: _subtitle.signUp, - //color: AColors.cyan, - onPressed: (){ - Navigator.of(context).pushNamed(Register.id); - }, - ), + // SizedBox(height: 140 * AppStyle.getScaleFactor(context),), + // AOutLinedButton( + // text: _subtitle.signUp, + // //color: AColors.cyan, + // onPressed: (){ + // Navigator.of(context).pushNamed(Register.id); + // }, + // ), - SizedBox(height: 32,), + const SizedBox(height: 32,), ], ), ),