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

fix: footer decoration #424

Merged
merged 2 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
17 changes: 11 additions & 6 deletions lib/footer/widgets/full_footer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ class FullFooter extends StatelessWidget {
FullFooter({
super.key,
this.showIconsForSmall = true,
this.footerDecoration = false,
PlatformHelper? platformHelper,
}) : _platformHelper = platformHelper ?? PlatformHelper();

final bool showIconsForSmall;
final PlatformHelper _platformHelper;
final bool footerDecoration;

@override
Widget build(BuildContext context) {
Expand All @@ -28,12 +30,15 @@ class FullFooter extends StatelessWidget {

return Container(
height: 100,
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage(Assets.backgrounds.landingBackgroundFooter.path),
fit: BoxFit.fill,
),
),
decoration: footerDecoration
? BoxDecoration(
image: DecorationImage(
image:
AssetImage(Assets.backgrounds.landingBackgroundFooter.path),
fit: BoxFit.fill,
),
)
: null,
child: ResponsiveLayoutBuilder(
small: (context, child) {
return Container(
Expand Down
10 changes: 8 additions & 2 deletions lib/landing/widgets/landing_body.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ class _SmallLandingBody extends StatelessWidget {
key: LandingBody.landingPageImageKey,
),
),
FullFooter(showIconsForSmall: false),
FullFooter(
showIconsForSmall: false,
footerDecoration: true,
),
],
),
),
Expand Down Expand Up @@ -89,7 +92,10 @@ class _LargeLandingBody extends StatelessWidget {
),
Expanded(
flex: 3,
child: FullFooter(showIconsForSmall: false),
child: FullFooter(
showIconsForSmall: false,
footerDecoration: true,
),
),
],
),
Expand Down
2 changes: 1 addition & 1 deletion lib/share/view/share_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class ShareView extends StatelessWidget {
child: Column(
children: [
Expanded(child: ShareBody()),
FullFooter(),
FullFooter(footerDecoration: true),
],
),
),
Expand Down
1 change: 1 addition & 0 deletions lib/share/widgets/share_body.dart
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ class SmallShareBody extends StatelessWidget {
),
const SizedBox(height: 48),
const _ShareBodyContent(isSmallScreen: true),
const SizedBox(height: 32),
],
);
}
Expand Down