From ef1c4d8a8abea80a9297ac11975654be102c4de3 Mon Sep 17 00:00:00 2001 From: Shawn Date: Wed, 7 Sep 2022 13:50:46 -0600 Subject: [PATCH] Tweak pull quote to collapse for longer --- .../screens/editorial/widgets/_collapsing_pull_quote_image.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/screens/editorial/widgets/_collapsing_pull_quote_image.dart b/lib/ui/screens/editorial/widgets/_collapsing_pull_quote_image.dart index 2d90c1c3..3b24528e 100644 --- a/lib/ui/screens/editorial/widgets/_collapsing_pull_quote_image.dart +++ b/lib/ui/screens/editorial/widgets/_collapsing_pull_quote_image.dart @@ -9,7 +9,7 @@ class _CollapsingPullQuoteImage extends StatelessWidget { Widget build(BuildContext context) { // Start transitioning when we are halfway up the screen final collapseStartPx = context.heightPx * 1; - final collapseEndPx = context.heightPx * .35; + final collapseEndPx = context.heightPx * .15; const double imgHeight = 430; const double outerPadding = 100;