chore: Polish login design

This commit is contained in:
Krille 2024-11-04 13:52:43 +01:00
commit 3a8bb47e2c
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
5 changed files with 42 additions and 48 deletions

View file

@ -21,6 +21,7 @@ abstract class AppConfig {
static String _privacyUrl =
'https://github.com/krille-chan/fluffychat/blob/main/PRIVACY.md';
static String get privacyUrl => _privacyUrl;
static const String website = 'https://fluffychat.im';
static const String enablePushTutorial =
'https://github.com/krille-chan/fluffychat/wiki/Push-Notifications-without-Google-Services';
static const String encryptionTutorial =

View file

@ -97,7 +97,7 @@ abstract class FluffyThemes {
appBarTheme: AppBarTheme(
toolbarHeight: FluffyThemes.isColumnMode(context) ? 72 : 56,
shadowColor: FluffyThemes.isColumnMode(context)
? Colors.grey.withAlpha(64)
? colorScheme.surfaceContainer.withAlpha(64)
: null,
surfaceTintColor:
FluffyThemes.isColumnMode(context) ? colorScheme.surface : null,