├── .github ├── dependabot.yml ├── release.yml ├── stale.yml └── workflows │ ├── Android-CI-release.yml │ ├── Android-CI.yml │ └── update-gradle-wrapper.yml ├── .gitignore ├── .gitmodules ├── .idea └── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── LICENSE.txt ├── README.md ├── SlidingUp.gif ├── app ├── build.gradle.kts ├── ic_launcher-web.png └── src │ ├── androidTest │ └── kotlin │ │ └── info │ │ └── hannes │ │ └── slidingup │ │ └── demo │ │ ├── AnchorTest.kt │ │ ├── NoAnchorTest.kt │ │ └── tools │ │ ├── Matcher.kt │ │ └── SwipeTools.kt │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── info │ │ └── hannes │ │ └── slidinguppanel │ │ └── demo │ │ └── DemoActivity.kt │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-ldpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ ├── graphic.png │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── drawable │ └── my_above_shadow.xml │ ├── layout │ └── activity_demo.xml │ ├── menu │ └── demo.xml │ └── values │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jitpack.yml ├── library ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── com │ │ └── sothree │ │ └── slidinguppanel │ │ ├── LayoutWeightParams.kt │ │ ├── PanelSlideListener.kt │ │ ├── PanelState.kt │ │ ├── ScrollableViewHelper.kt │ │ ├── SimplePanelSlideListener.kt │ │ ├── SlidingUpPanelLayout.kt │ │ ├── ViewDragHelper.kt │ │ ├── canvasSaveProxy │ │ ├── AndroidPCanvasSaveProxy.kt │ │ ├── CanvasSaveProxy.kt │ │ ├── CanvasSaveProxyFactory.kt │ │ └── LegacyCanvasSaveProxy.kt │ │ └── positionhelper │ │ ├── ScrollPositionHelper.kt │ │ └── impl │ │ ├── AbstractScrollPositionHelper.kt │ │ ├── ListViewScrollPositionHelper.kt │ │ ├── RecyclerViewScrollPositionHelper.kt │ │ └── ScrollViewScrollPositionHelper.kt │ └── res │ ├── drawable │ ├── above_shadow.xml │ └── below_shadow.xml │ └── values │ └── attrs.xml ├── screenshotsToCompare9 ├── AnchorTest_setup.png ├── AnchorTest_testAnchorWithAnchored-2.png ├── AnchorTest_testAnchorWithAnchored_setup.png ├── AnchorTest_testExpand-1.png ├── AnchorTest_testExpand-2.png ├── AnchorTest_testExpand-3.png ├── AnchorTest_testExpand_setup.png ├── AnchorTest_testSwipe-ANCHORED-0.png ├── AnchorTest_testSwipe-ANCHORED-1.png ├── AnchorTest_testSwipe-ANCHORED-2.png ├── AnchorTest_testSwipe-COLLAPSED-0.png ├── AnchorTest_testSwipe-COLLAPSED-1.png ├── AnchorTest_testSwipe-COLLAPSED-2.png ├── AnchorTest_testSwipe-EXPANDED-0.png ├── AnchorTest_testSwipe-EXPANDED-1.png ├── AnchorTest_testSwipe-EXPANDED-2.png ├── AnchorTest_testSwipe_setup.png ├── NoAnchorTest_testAnchorWithoutAnchored-2.png ├── NoAnchorTest_testExpand-1.png ├── NoAnchorTest_testExpand-2.png ├── NoAnchorTest_testExpand-3.png ├── NoAnchorTest_testSwipe-COLLAPSED0.png ├── NoAnchorTest_testSwipe-COLLAPSED1.png ├── NoAnchorTest_testSwipe-COLLAPSED2.png ├── NoAnchorTest_testSwipe-EXPANDED-0.png ├── NoAnchorTest_testSwipe-EXPANDED-1.png └── NoAnchorTest_testSwipe-EXPANDED-2.png └── settings.gradle.kts /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/Android-CI-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/.github/workflows/Android-CI-release.yml -------------------------------------------------------------------------------- /.github/workflows/Android-CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/.github/workflows/Android-CI.yml -------------------------------------------------------------------------------- /.github/workflows/update-gradle-wrapper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/.github/workflows/update-gradle-wrapper.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/README.md -------------------------------------------------------------------------------- /SlidingUp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/SlidingUp.gif -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/androidTest/kotlin/info/hannes/slidingup/demo/AnchorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/androidTest/kotlin/info/hannes/slidingup/demo/AnchorTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/kotlin/info/hannes/slidingup/demo/NoAnchorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/androidTest/kotlin/info/hannes/slidingup/demo/NoAnchorTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/kotlin/info/hannes/slidingup/demo/tools/Matcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/androidTest/kotlin/info/hannes/slidingup/demo/tools/Matcher.kt -------------------------------------------------------------------------------- /app/src/androidTest/kotlin/info/hannes/slidingup/demo/tools/SwipeTools.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/androidTest/kotlin/info/hannes/slidingup/demo/tools/SwipeTools.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/kotlin/info/hannes/slidinguppanel/demo/DemoActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/main/kotlin/info/hannes/slidinguppanel/demo/DemoActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/main/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/main/res/drawable-xhdpi/graphic.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/my_above_shadow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/main/res/drawable/my_above_shadow.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/main/res/layout/activity_demo.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/main/res/menu/demo.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/jitpack.yml -------------------------------------------------------------------------------- /library/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/build.gradle.kts -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/LayoutWeightParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/LayoutWeightParams.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/PanelSlideListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/PanelSlideListener.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/PanelState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/PanelState.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/ScrollableViewHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/ScrollableViewHelper.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/SimplePanelSlideListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/SimplePanelSlideListener.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/SlidingUpPanelLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/SlidingUpPanelLayout.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/ViewDragHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/ViewDragHelper.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/canvasSaveProxy/AndroidPCanvasSaveProxy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/canvasSaveProxy/AndroidPCanvasSaveProxy.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/canvasSaveProxy/CanvasSaveProxy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/canvasSaveProxy/CanvasSaveProxy.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/canvasSaveProxy/CanvasSaveProxyFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/canvasSaveProxy/CanvasSaveProxyFactory.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/canvasSaveProxy/LegacyCanvasSaveProxy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/canvasSaveProxy/LegacyCanvasSaveProxy.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/positionhelper/ScrollPositionHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/positionhelper/ScrollPositionHelper.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/positionhelper/impl/AbstractScrollPositionHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/positionhelper/impl/AbstractScrollPositionHelper.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/positionhelper/impl/ListViewScrollPositionHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/positionhelper/impl/ListViewScrollPositionHelper.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/positionhelper/impl/RecyclerViewScrollPositionHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/positionhelper/impl/RecyclerViewScrollPositionHelper.kt -------------------------------------------------------------------------------- /library/src/main/kotlin/com/sothree/slidinguppanel/positionhelper/impl/ScrollViewScrollPositionHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/kotlin/com/sothree/slidinguppanel/positionhelper/impl/ScrollViewScrollPositionHelper.kt -------------------------------------------------------------------------------- /library/src/main/res/drawable/above_shadow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/res/drawable/above_shadow.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable/below_shadow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/res/drawable/below_shadow.xml -------------------------------------------------------------------------------- /library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/library/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_setup.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testAnchorWithAnchored-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testAnchorWithAnchored-2.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testAnchorWithAnchored_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testAnchorWithAnchored_setup.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testExpand-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testExpand-1.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testExpand-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testExpand-2.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testExpand-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testExpand-3.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testExpand_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testExpand_setup.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testSwipe-ANCHORED-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testSwipe-ANCHORED-0.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testSwipe-ANCHORED-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testSwipe-ANCHORED-1.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testSwipe-ANCHORED-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testSwipe-ANCHORED-2.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testSwipe-COLLAPSED-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testSwipe-COLLAPSED-0.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testSwipe-COLLAPSED-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testSwipe-COLLAPSED-1.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testSwipe-COLLAPSED-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testSwipe-COLLAPSED-2.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testSwipe-EXPANDED-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testSwipe-EXPANDED-0.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testSwipe-EXPANDED-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testSwipe-EXPANDED-1.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testSwipe-EXPANDED-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testSwipe-EXPANDED-2.png -------------------------------------------------------------------------------- /screenshotsToCompare9/AnchorTest_testSwipe_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/AnchorTest_testSwipe_setup.png -------------------------------------------------------------------------------- /screenshotsToCompare9/NoAnchorTest_testAnchorWithoutAnchored-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/NoAnchorTest_testAnchorWithoutAnchored-2.png -------------------------------------------------------------------------------- /screenshotsToCompare9/NoAnchorTest_testExpand-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/NoAnchorTest_testExpand-1.png -------------------------------------------------------------------------------- /screenshotsToCompare9/NoAnchorTest_testExpand-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/NoAnchorTest_testExpand-2.png -------------------------------------------------------------------------------- /screenshotsToCompare9/NoAnchorTest_testExpand-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/NoAnchorTest_testExpand-3.png -------------------------------------------------------------------------------- /screenshotsToCompare9/NoAnchorTest_testSwipe-COLLAPSED0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/NoAnchorTest_testSwipe-COLLAPSED0.png -------------------------------------------------------------------------------- /screenshotsToCompare9/NoAnchorTest_testSwipe-COLLAPSED1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/NoAnchorTest_testSwipe-COLLAPSED1.png -------------------------------------------------------------------------------- /screenshotsToCompare9/NoAnchorTest_testSwipe-COLLAPSED2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/NoAnchorTest_testSwipe-COLLAPSED2.png -------------------------------------------------------------------------------- /screenshotsToCompare9/NoAnchorTest_testSwipe-EXPANDED-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/NoAnchorTest_testSwipe-EXPANDED-0.png -------------------------------------------------------------------------------- /screenshotsToCompare9/NoAnchorTest_testSwipe-EXPANDED-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/NoAnchorTest_testSwipe-EXPANDED-1.png -------------------------------------------------------------------------------- /screenshotsToCompare9/NoAnchorTest_testSwipe-EXPANDED-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/screenshotsToCompare9/NoAnchorTest_testSwipe-EXPANDED-2.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesa2/AndroidSlidingUpPanel/HEAD/settings.gradle.kts --------------------------------------------------------------------------------