Skip to content

Commit

Permalink
design: iOS related adjustments for onboarding
Browse files Browse the repository at this point in the history
  • Loading branch information
krille-chan committed Aug 9, 2023
1 parent cb9d731 commit 73c38a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion lib/pages/homeserver_picker/homeserver_picker_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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,
),
),
),
),
Expand Down
3 changes: 1 addition & 2 deletions lib/widgets/layouts/login_scaffold.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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: [
Expand Down

0 comments on commit 73c38a5

Please sign in to comment.