Fixed
Status Update
Comments
an...@google.com <an...@google.com>
ap...@google.com <ap...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-main
commit 02d452019a2cd3d003e7f43ae5c874eb340e9061
Author: Andrey Kulikov <andreykulikov@google.com>
Date: Tue May 31 18:12:18 2022
Add experimental api to check that we do not nest scrollable containers
This api existed as an internal api for a while as all the usages lived in foundation. However now when we allow users to create their own LazyLayouts they will want to use this assertion in their implementations as well.
Test: n/a
Fixes: 233352497
Relnote: Introduced an experimental api checkScrollableContainerConstraints() which allows to check that we do not nest scrollable containers. You can use it when create your own scrollable lazy layouts via LazyLayout.
Change-Id: Id6fabde2877f20155be3d9642c2e74e0e7d4dab0
M compose/foundation/foundation/api/restricted_current.txt
A compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/CheckScrollableContainerConstraints.kt
M compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/ClipScrollableContainer.kt
M compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/lazy/LazyList.kt
M compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/lazy/grid/LazyGrid.kt
M compose/foundation/foundation/api/public_plus_experimental_1.2.0-beta04.txt
M compose/foundation/foundation/api/1.2.0-beta04.txt
M compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/Scroll.kt
M compose/foundation/foundation/api/public_plus_experimental_current.txt
M compose/foundation/foundation/api/current.txt
M compose/foundation/foundation/api/restricted_1.2.0-beta04.txt
M compose/foundation/foundation/src/androidAndroidTest/kotlin/androidx/compose/foundation/gesture/OverScrollTest.kt
https://android-review.googlesource.com/2112204
Branch: androidx-main
commit 02d452019a2cd3d003e7f43ae5c874eb340e9061
Author: Andrey Kulikov <andreykulikov@google.com>
Date: Tue May 31 18:12:18 2022
Add experimental api to check that we do not nest scrollable containers
This api existed as an internal api for a while as all the usages lived in foundation. However now when we allow users to create their own LazyLayouts they will want to use this assertion in their implementations as well.
Test: n/a
Fixes: 233352497
Relnote: Introduced an experimental api checkScrollableContainerConstraints() which allows to check that we do not nest scrollable containers. You can use it when create your own scrollable lazy layouts via LazyLayout.
Change-Id: Id6fabde2877f20155be3d9642c2e74e0e7d4dab0
M compose/foundation/foundation/api/restricted_current.txt
A compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/CheckScrollableContainerConstraints.kt
M compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/ClipScrollableContainer.kt
M compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/lazy/LazyList.kt
M compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/lazy/grid/LazyGrid.kt
M compose/foundation/foundation/api/public_plus_experimental_1.2.0-beta04.txt
M compose/foundation/foundation/api/1.2.0-beta04.txt
M compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/Scroll.kt
M compose/foundation/foundation/api/public_plus_experimental_current.txt
M compose/foundation/foundation/api/current.txt
M compose/foundation/foundation/api/restricted_1.2.0-beta04.txt
M compose/foundation/foundation/src/androidAndroidTest/kotlin/androidx/compose/foundation/gesture/OverScrollTest.kt
Description
I also think that maybe it should be named "checkFoo", not "assertFoo" as it is not a test api