design: Minor improvements of login buttons
This commit is contained in:
parent
26f047fb42
commit
decc231fda
1 changed files with 3 additions and 4 deletions
|
|
@ -144,10 +144,10 @@ class SignUpView extends StatelessWidget {
|
||||||
primary: Theme.of(context).secondaryHeaderColor,
|
primary: Theme.of(context).secondaryHeaderColor,
|
||||||
onPrimary:
|
onPrimary:
|
||||||
Theme.of(context).textTheme.bodyText1.color,
|
Theme.of(context).textTheme.bodyText1.color,
|
||||||
elevation: 2,
|
//elevation: 1,
|
||||||
),
|
),
|
||||||
onPressed: () => context.vRouter.push('/login'),
|
onPressed: () => context.vRouter.push('/login'),
|
||||||
child: Text(L10n.of(context).login),
|
child: Text(L10n.of(context).login.toUpperCase()),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (controller.passwordLoginSupported &&
|
if (controller.passwordLoginSupported &&
|
||||||
|
|
@ -160,10 +160,9 @@ class SignUpView extends StatelessWidget {
|
||||||
primary: Theme.of(context).secondaryHeaderColor,
|
primary: Theme.of(context).secondaryHeaderColor,
|
||||||
onPrimary:
|
onPrimary:
|
||||||
Theme.of(context).textTheme.bodyText1.color,
|
Theme.of(context).textTheme.bodyText1.color,
|
||||||
elevation: 2,
|
|
||||||
),
|
),
|
||||||
onPressed: controller.ssoLoginAction,
|
onPressed: controller.ssoLoginAction,
|
||||||
child: Text(L10n.of(context).useSSO),
|
child: Text(L10n.of(context).useSSO.toUpperCase()),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
]),
|
]),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue