chore: make login and signup views more consistent (#5518)
This commit is contained in:
parent
ed6c2ff5ad
commit
33826b02fe
2 changed files with 9 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ class LoginOptionsView extends StatelessWidget {
|
|||
BackButton(
|
||||
onPressed: Navigator.of(context).pop,
|
||||
),
|
||||
Text(L10n.of(context).loginToAccount),
|
||||
Text(L10n.of(context).login),
|
||||
const SizedBox(
|
||||
width: 40.0,
|
||||
),
|
||||
|
|
@ -51,6 +51,13 @@ class LoginOptionsView extends StatelessWidget {
|
|||
spacing: 16.0,
|
||||
mainAxisAlignment: MainAxisAlignment.end,
|
||||
children: [
|
||||
Text(
|
||||
L10n.of(context).loginToAccount,
|
||||
textAlign: TextAlign.center,
|
||||
style: theme.textTheme.titleMedium?.copyWith(
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
const PangeaSsoButton(
|
||||
provider: SSOProvider.apple,
|
||||
title: "Apple",
|
||||
|
|
|
|||
|
|
@ -36,6 +36,7 @@ class SignupPageView extends StatelessWidget {
|
|||
BackButton(
|
||||
onPressed: Navigator.of(context).pop,
|
||||
),
|
||||
Text(L10n.of(context).signUp),
|
||||
const SizedBox(
|
||||
width: 40.0,
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue