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

feat: adding the new layout to the landing page #421

Merged
merged 4 commits into from
Jan 23, 2023
Merged
Show file tree
Hide file tree
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
43 changes: 23 additions & 20 deletions lib/footer/widgets/full_footer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,28 +73,31 @@ class FullFooter extends StatelessWidget {
);
},
large: (context, child) {
return Padding(
padding: const EdgeInsets.symmetric(
horizontal: 32,
vertical: 24,
),
child: Row(
children: [
for (final icon in icons) ...[
icon,
gap,
],
Expanded(
child: Align(
alignment: Alignment.centerRight,
child: child,
return Align(
child: Padding(
padding: const EdgeInsets.symmetric(
horizontal: 32,
vertical: 24,
),
child: Row(
crossAxisAlignment: CrossAxisAlignment.end,
children: [
for (final icon in icons) ...[
icon,
gap,
],
Expanded(
child: Align(
alignment: Alignment.bottomRight,
child: child,
),
),
),
if (!_platformHelper.isMobile) ...[
gap,
const MuteButton(),
if (!_platformHelper.isMobile) ...[
gap,
const MuteButton(),
],
],
],
),
),
);
},
Expand Down
14 changes: 4 additions & 10 deletions lib/landing/view/landing_page.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import 'package:flutter/material.dart';
import 'package:holobooth/footer/footer.dart';
import 'package:holobooth/landing/landing.dart';
import 'package:holobooth_ui/holobooth_ui.dart';

Expand All @@ -21,19 +20,14 @@ class LandingView extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Stack(
children: [
const Positioned.fill(
children: const [
Positioned.fill(
child: LandingBackground(),
),
Positioned.fill(
child: Column(
children: [
const Expanded(child: LandingBody()),
FullFooter(showIconsForSmall: false),
],
),
child: LandingBody(),
),
const Positioned(
Positioned(
bottom: 100,
right: 0,
child: ClassicPhotoboothBanner(),
Expand Down
63 changes: 42 additions & 21 deletions lib/landing/widgets/landing_body.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import 'package:flutter/material.dart';
import 'package:holobooth/assets/assets.dart';
import 'package:holobooth/footer/footer.dart';
import 'package:holobooth/l10n/l10n.dart';
import 'package:holobooth/landing/landing.dart';
import 'package:holobooth_ui/holobooth_ui.dart';
Expand All @@ -24,21 +25,36 @@ class _SmallLandingBody extends StatelessWidget {

@override
Widget build(BuildContext context) {
return SingleChildScrollView(
padding: const EdgeInsets.symmetric(horizontal: 32),
child: Column(
children: [
const SizedBox(height: 46),
const _LandingBodyContent(smallScreen: true),
const SizedBox(height: 34),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: Assets.backgrounds.holobooth.image(
key: LandingBody.landingPageImageKey,
return CustomScrollView(
slivers: [
SliverToBoxAdapter(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 32),
child: Column(
children: const [
SizedBox(height: 46),
_LandingBodyContent(smallScreen: true),
SizedBox(height: 34),
],
),
),
],
),
),
SliverFillRemaining(
hasScrollBody: false,
child: Column(
mainAxisAlignment: MainAxisAlignment.end,
children: [
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: Assets.backgrounds.holobooth.image(
key: LandingBody.landingPageImageKey,
),
),
FullFooter(showIconsForSmall: false),
],
),
),
],
);
}
}
Expand All @@ -49,15 +65,16 @@ class _LargeLandingBody extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Align(
child: SingleChildScrollView(
padding: const EdgeInsets.symmetric(horizontal: 32),
child: Column(
children: [
Row(
child: Column(
mainAxisAlignment: MainAxisAlignment.end,
children: [
Expanded(
flex: 7,
child: Row(
children: [
Expanded(
child: Container(
alignment: Alignment.center,
alignment: Alignment.bottomCenter,
child: Assets.backgrounds.holobooth.image(
key: LandingBody.landingPageImageKey,
),
Expand All @@ -69,8 +86,12 @@ class _LargeLandingBody extends StatelessWidget {
),
],
),
],
),
),
Expanded(
flex: 3,
child: FullFooter(showIconsForSmall: false),
),
],
),
);
}
Expand Down