design: iOS related adjustments for onboarding

This commit is contained in:
Krille 2023-08-09 18:44:43 +02:00
parent cb9d731b80
commit 73c38a52bc
No known key found for this signature in database
2 changed files with 5 additions and 3 deletions

View file

@ -143,7 +143,10 @@ class HomeserverPickerView extends StatelessWidget {
const EdgeInsets.symmetric(vertical: 12),
),
onPressed: controller.restoreBackup,
child: Text(L10n.of(context)!.hydrate),
child: Text(
L10n.of(context)!.hydrate,
textAlign: TextAlign.center,
),
),
),
),

View file

@ -22,7 +22,6 @@ class LoginScaffold extends StatelessWidget {
final isMobileMode = !FluffyThemes.isColumnMode(context);
final scaffold = Scaffold(
key: const Key('LoginScaffold'),
backgroundColor: isMobileMode ? null : Colors.transparent,
appBar: appBar == null
? null
: AppBar(
@ -51,7 +50,7 @@ class LoginScaffold extends StatelessWidget {
if (isMobileMode) return scaffold;
return Container(
decoration: BoxDecoration(
gradient: FluffyThemes.backgroundGradient(context, 156),
gradient: FluffyThemes.backgroundGradient(context, 255),
),
child: Column(
children: [