Skip to content
This repository was archived by the owner on Aug 14, 2023. It is now read-only.

fix: landing page offset #433

Merged
merged 1 commit into from
Jan 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions lib/landing/widgets/landing_body.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,11 @@ class _SmallLandingBody extends StatelessWidget {
children: [
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: Assets.backgrounds.holobooth.image(
key: LandingBody.landingPageImageKey,
child: Transform.translate(
offset: const Offset(0, 10),
child: Assets.backgrounds.holobooth.image(
key: LandingBody.landingPageImageKey,
),
),
),
FullFooter(
Expand Down Expand Up @@ -76,10 +79,13 @@ class _LargeLandingBody extends StatelessWidget {
child: Row(
children: [
Expanded(
child: Container(
alignment: Alignment.bottomCenter,
child: Assets.backgrounds.holobooth.image(
key: LandingBody.landingPageImageKey,
child: Transform.translate(
offset: const Offset(0, 10),
child: Container(
alignment: Alignment.bottomCenter,
child: Assets.backgrounds.holobooth.image(
key: LandingBody.landingPageImageKey,
),
),
),
),
Expand Down