├── .gitignore ├── LICENSE.txt ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── heyalex │ │ └── bottomdrawerexample │ │ ├── GoogleTaskExampleDialog.kt │ │ ├── GoogleTaskJavaSampleDialog.java │ │ ├── MainActivity.kt │ │ ├── PullExampleDialog.kt │ │ ├── RotateExampleDialog.kt │ │ └── handle │ │ └── RotateHandleView.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── circular_background.xml │ ├── ic_close_black_24dp.xml │ ├── ic_expand_less_black_24dp.xml │ ├── ic_launcher_background.xml │ ├── ic_person_add_black_24dp.xml │ └── ic_settings_black_24dp.xml │ ├── layout │ ├── activity_main.xml │ ├── compact_profile_header.xml │ ├── content_view.xml │ ├── example_layout.xml │ ├── google_task_example_layout.xml │ ├── profile_content.xml │ ├── profile_header.xml │ └── rotate_task_example_layout.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── values-v21 │ └── styles.xml │ ├── values-v23 │ └── styles.xml │ ├── values-v29 │ └── styles.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── bottomdrawer ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── heyalex │ │ ├── bottomdrawer │ │ ├── BottomDrawer.kt │ │ ├── BottomDrawerDialog.kt │ │ ├── BottomDrawerFragment.kt │ │ └── TranslationUpdater.kt │ │ ├── handle │ │ ├── PlainHandleView.kt │ │ └── PullHandleView.kt │ │ └── utils │ │ ├── BottomDrawerDelegate.kt │ │ └── DialogFragmentExtension.kt │ └── res │ ├── layout │ └── bottom_drawer_layout.xml │ ├── values-v21 │ └── styles.xml │ ├── values-v23 │ └── styles.xml │ ├── values-v27 │ └── styles.xml │ └── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── ids.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── raw ├── ceramic mug.jpg ├── dinner_set.jpg ├── linen napkins.jpeg ├── sample_custom_arrow.gif ├── sample_custom_pull.gif ├── sample_google_task.gif └── wine_glass.webp └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/github/heyalex/bottomdrawerexample/GoogleTaskExampleDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/java/com/github/heyalex/bottomdrawerexample/GoogleTaskExampleDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/heyalex/bottomdrawerexample/GoogleTaskJavaSampleDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/java/com/github/heyalex/bottomdrawerexample/GoogleTaskJavaSampleDialog.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/heyalex/bottomdrawerexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/java/com/github/heyalex/bottomdrawerexample/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/heyalex/bottomdrawerexample/PullExampleDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/java/com/github/heyalex/bottomdrawerexample/PullExampleDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/heyalex/bottomdrawerexample/RotateExampleDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/java/com/github/heyalex/bottomdrawerexample/RotateExampleDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/heyalex/bottomdrawerexample/handle/RotateHandleView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/java/com/github/heyalex/bottomdrawerexample/handle/RotateHandleView.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/circular_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/drawable/circular_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_close_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/drawable/ic_close_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_expand_less_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/drawable/ic_expand_less_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_person_add_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/drawable/ic_person_add_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_settings_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/drawable/ic_settings_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/compact_profile_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/layout/compact_profile_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/layout/content_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/example_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/layout/example_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/google_task_example_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/layout/google_task_example_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/profile_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/layout/profile_content.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/profile_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/layout/profile_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/rotate_task_example_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/layout/rotate_task_example_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v23/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/values-v23/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v29/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/values-v29/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /bottomdrawer/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /bottomdrawer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/build.gradle -------------------------------------------------------------------------------- /bottomdrawer/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/proguard-rules.pro -------------------------------------------------------------------------------- /bottomdrawer/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bottomdrawer/src/main/java/com/github/heyalex/bottomdrawer/BottomDrawer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/java/com/github/heyalex/bottomdrawer/BottomDrawer.kt -------------------------------------------------------------------------------- /bottomdrawer/src/main/java/com/github/heyalex/bottomdrawer/BottomDrawerDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/java/com/github/heyalex/bottomdrawer/BottomDrawerDialog.kt -------------------------------------------------------------------------------- /bottomdrawer/src/main/java/com/github/heyalex/bottomdrawer/BottomDrawerFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/java/com/github/heyalex/bottomdrawer/BottomDrawerFragment.kt -------------------------------------------------------------------------------- /bottomdrawer/src/main/java/com/github/heyalex/bottomdrawer/TranslationUpdater.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/java/com/github/heyalex/bottomdrawer/TranslationUpdater.kt -------------------------------------------------------------------------------- /bottomdrawer/src/main/java/com/github/heyalex/handle/PlainHandleView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/java/com/github/heyalex/handle/PlainHandleView.kt -------------------------------------------------------------------------------- /bottomdrawer/src/main/java/com/github/heyalex/handle/PullHandleView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/java/com/github/heyalex/handle/PullHandleView.kt -------------------------------------------------------------------------------- /bottomdrawer/src/main/java/com/github/heyalex/utils/BottomDrawerDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/java/com/github/heyalex/utils/BottomDrawerDelegate.kt -------------------------------------------------------------------------------- /bottomdrawer/src/main/java/com/github/heyalex/utils/DialogFragmentExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/java/com/github/heyalex/utils/DialogFragmentExtension.kt -------------------------------------------------------------------------------- /bottomdrawer/src/main/res/layout/bottom_drawer_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/res/layout/bottom_drawer_layout.xml -------------------------------------------------------------------------------- /bottomdrawer/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /bottomdrawer/src/main/res/values-v23/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/res/values-v23/styles.xml -------------------------------------------------------------------------------- /bottomdrawer/src/main/res/values-v27/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/res/values-v27/styles.xml -------------------------------------------------------------------------------- /bottomdrawer/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /bottomdrawer/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /bottomdrawer/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /bottomdrawer/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /bottomdrawer/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /bottomdrawer/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/bottomdrawer/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/gradlew.bat -------------------------------------------------------------------------------- /raw/ceramic mug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/raw/ceramic mug.jpg -------------------------------------------------------------------------------- /raw/dinner_set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/raw/dinner_set.jpg -------------------------------------------------------------------------------- /raw/linen napkins.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/raw/linen napkins.jpeg -------------------------------------------------------------------------------- /raw/sample_custom_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/raw/sample_custom_arrow.gif -------------------------------------------------------------------------------- /raw/sample_custom_pull.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/raw/sample_custom_pull.gif -------------------------------------------------------------------------------- /raw/sample_google_task.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/raw/sample_google_task.gif -------------------------------------------------------------------------------- /raw/wine_glass.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyAlex/BottomDrawer/HEAD/raw/wine_glass.webp -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':bottomdrawer' 2 | --------------------------------------------------------------------------------