|
|
|
@ -59,6 +59,23 @@ class PangeaLoginView extends StatelessWidget {
|
|
|
|
loading: controller.loadingSignIn,
|
|
|
|
loading: controller.loadingSignIn,
|
|
|
|
enabled: controller.enabledSignIn,
|
|
|
|
enabled: controller.enabledSignIn,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
Padding(
|
|
|
|
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 6.0),
|
|
|
|
|
|
|
|
child: TextButton(
|
|
|
|
|
|
|
|
onPressed: controller.loadingSignIn
|
|
|
|
|
|
|
|
? () {}
|
|
|
|
|
|
|
|
: controller.passwordForgotten,
|
|
|
|
|
|
|
|
style: TextButton.styleFrom(
|
|
|
|
|
|
|
|
foregroundColor: Theme.of(context).colorScheme.error,
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
child: Row(
|
|
|
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
|
|
|
|
children: [
|
|
|
|
|
|
|
|
Text(L10n.of(context).passwordForgotten),
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.all(20),
|
|
|
|
padding: const EdgeInsets.all(20),
|
|
|
|
child: Row(
|
|
|
|
child: Row(
|
|
|
|
|