Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5acbcf42 authored by Gauri Shankar's avatar Gauri Shankar
Browse files

Added a padding to the notification column to contain view overshoot issue due...

Added a padding to the notification column to contain view overshoot issue due to overScroll from container bounds.

Diagnosis is provided in buganiser.

Bug: 437347340
Flag: EXEMPT Bugfix
Test: Tested Manually
Change-Id: I36f6ab58735a6625a7a2b442085b318518c26401
parent bd5349dc
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -649,6 +649,8 @@ fun ContentScope.NotificationScrollingStack(
                        }
                        .verticalScroll(scrollState, overscrollEffect = overScrollEffect)
                        .fillMaxWidth()
                        // Added extra bottom padding for keeping footerView inside parent Viewbounds during overscroll, refer to b/437347340#comment3
                        .padding(bottom = 4.dp)
                        .onGloballyPositioned { coordinates ->
                            stackBoundsOnScreen.value = coordinates.boundsInWindow()
                        }