chore: make login and signup views more consistent (#5518)

This commit is contained in:
ggurdin 2026-01-29 14:11:20 -05:00 committed by GitHub
parent ed6c2ff5ad
commit 33826b02fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View file

@ -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",

View file

@ -36,6 +36,7 @@ class SignupPageView extends StatelessWidget {
BackButton(
onPressed: Navigator.of(context).pop,
),
Text(L10n.of(context).signUp),
const SizedBox(
width: 40.0,
),