cleared console problems
This commit is contained in:
@@ -83,7 +83,7 @@ class DesktopForgotPasswordPage extends StatelessWidget {
|
||||
// ),
|
||||
SizedBox(height: 70.0.h()),
|
||||
viewModel.isLoading
|
||||
? BaseButton(
|
||||
? const BaseButton(
|
||||
isEnabled: false,
|
||||
text: ForgotPasswordStrings.resetLink,
|
||||
onPressed: null,
|
||||
@@ -105,7 +105,7 @@ class DesktopForgotPasswordPage extends StatelessWidget {
|
||||
}
|
||||
: null,
|
||||
),
|
||||
SizedBox(height: 12),
|
||||
const SizedBox(height: 12),
|
||||
TextButton(
|
||||
onPressed: () {
|
||||
context.pop();
|
||||
|
||||
@@ -10,7 +10,7 @@ class ForgotPasswordScreen extends StatelessWidget {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return ResponsiveBuilder(
|
||||
return const ResponsiveBuilder(
|
||||
mobile: MobileForgotPasswordPage(),
|
||||
tablet: TabletForgotPasswordPage(),
|
||||
desktop: DesktopForgotPasswordPage(),
|
||||
|
||||
@@ -78,7 +78,7 @@ class MobileForgotPasswordPage extends StatelessWidget {
|
||||
// ),
|
||||
// SizedBox(height: 70.0.h()),
|
||||
viewModel.isLoading
|
||||
? BaseButton(
|
||||
? const BaseButton(
|
||||
isEnabled: false,
|
||||
text: ForgotPasswordStrings.resetLink,
|
||||
onPressed: null,
|
||||
|
||||
@@ -77,7 +77,7 @@ class TabletForgotPasswordPage extends StatelessWidget {
|
||||
// ),
|
||||
// SizedBox(height: 70.0.h()),
|
||||
viewModel.isLoading
|
||||
? BaseButton(
|
||||
? const BaseButton(
|
||||
isEnabled: false,
|
||||
text: ForgotPasswordStrings.resetLink,
|
||||
onPressed: null,
|
||||
@@ -100,7 +100,7 @@ class TabletForgotPasswordPage extends StatelessWidget {
|
||||
: null,
|
||||
),
|
||||
|
||||
SizedBox(height: 12),
|
||||
const SizedBox(height: 12),
|
||||
TextButton(
|
||||
onPressed: () {
|
||||
context.pop();
|
||||
|
||||
Reference in New Issue
Block a user