{"id":21174897,"url":"https://github.com/mindinventory/minavdrawer","last_synced_at":"2025-10-07T08:20:45.230Z","repository":{"id":47412232,"uuid":"131827636","full_name":"Mindinventory/minavdrawer","owner":"Mindinventory","description":"Easy to add different animations into standard NavigationDrawer.","archived":false,"fork":false,"pushed_at":"2021-09-01T11:40:58.000Z","size":16514,"stargazers_count":107,"open_issues_count":0,"forks_count":62,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-04-05T07:22:35.524Z","etag":null,"topics":["android","android11-support","android12-support","androidx-support","animations","customisations","customization","drawer","drawer-android","drawer-animation","drawerlayout","easy-to-use","kotlin","navigation-drawer"],"latest_commit_sha":null,"homepage":"https://www.mindinventory.com/android-application-development.php","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mindinventory.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-05-02T09:21:34.000Z","updated_at":"2025-02-13T13:41:57.000Z","dependencies_parsed_at":"2022-08-23T09:41:06.567Z","dependency_job_id":null,"html_url":"https://github.com/Mindinventory/minavdrawer","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/Mindinventory/minavdrawer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2Fminavdrawer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2Fminavdrawer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2Fminavdrawer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2Fminavdrawer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mindinventory","download_url":"https://codeload.github.com/Mindinventory/minavdrawer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mindinventory%2Fminavdrawer/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264503949,"owners_count":23618762,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","android11-support","android12-support","androidx-support","animations","customisations","customization","drawer","drawer-android","drawer-animation","drawerlayout","easy-to-use","kotlin","navigation-drawer"],"created_at":"2024-11-20T16:56:34.246Z","updated_at":"2025-10-07T08:20:40.199Z","avatar_url":"https://github.com/Mindinventory.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Navigation Drawer Customisations [![](https://jitpack.io/v/mindinventory/minavdrawer.svg)](https://jitpack.io/#mindinventory/minavdrawer)\n\nEasy to use customisations of standard NavigationDrawer\n\n| DoorIn                      | Slide                      | Scroll                     | DoorOut                    |\n| --------------------------- | -------------------------- | -------------------------- | -------------------------- |\n| ![image](/media/doorIn.gif) | ![image](/media/slide.gif) | ![image](/media/scroll.gif)| ![image](/media/doorOut.gif)|\n\n# Usage\n\n* Dependencies\n\n    Step 1. Add the JitPack repository to your build file:\n    \n    Add it in your root build.gradle at the end of repositories:\n\n    ```groovy\n\t    allprojects {\n\t\t    repositories {\n\t\t\t    ...\n\t\t\t    maven { url 'https://jitpack.io' }\n\t\t    }\n\t    }\n    ```\n\n\n    Step 2. Add the dependency\n    ```groovy\n\t    dependencies {\n\t\t    implementation 'com.github.mindinventory:minavdrawer:\u003cX.X.X\u003e'\n\t    }\n    ```\n    \n* MIDrawerView.kt is the DrawerView component, add it to your xml file for drawer view.\n\n```groovy\n\u003ccom.mindinventory.midrawer.MIDrawerView\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n    xmlns:tools=\"http://schemas.android.com/tools\"\n    android:id=\"@+id/drawer_layout\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:background=\"@drawable/bg_gradient\"\n    android:fitsSystemWindows=\"true\"\n    app:sliderType=\"doorIn\"\n    tools:openDrawer=\"start\"\u003e\n```\n\n* Use attribute for the Drawer sliding style from xml.\n\n```groovy\napp:sliderType=\"doorIn\"\n\n// Here, sliderType types are following.\n\n// scroll (For sliding view with content)\n// slide (Open a drawer with content sliding with scale and rotation both.)\n// doorIn (Open a drawer inside with content sliding with scale only)\n// doorOut (Open a drawer outside with content sliding with scale only)\n```\n\n * Use attribute for the Drawer sliding style from dynamically in kotlin or Java class.\n\n```groovy\n// You can use is dynamically with following content.\ndrawer_layout.setSliderType(slideType)\n\n\n// Here, slideType types are following.\n\n// (For sliding view with content)\n// MIDrawerView.MI_TYPE_SLIDE_WITH_CONTENT (For scroll)\n\n// (Open a drawer with content sliding with scale and rotation both.)\n// MIDrawerView.MI_TYPE_SLIDE (For slide)\n\n// (Open a drawer inside with content sliding with scale only)\n// MIDrawerView.MI_TYPE_DOOR_IN (For doorIn)\n\n// (Open a drawer outside with content sliding with scale only)\n// MIDrawerView.MI_TYPE_DOOR_OUT (For doorOut)\n```\n\n# LICENSE!\n\nMIDrawerView is [MIT-licensed](https://github.com/mindinventory1/minavdrawer/blob/master/LICENSE).\n\n# Let us know!\nWe’d be really happy if you send us links to your projects where you use our component. Just send an email to sales@mindinventory.com And do let us know if you have any questions or suggestion regarding our work.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmindinventory%2Fminavdrawer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmindinventory%2Fminavdrawer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmindinventory%2Fminavdrawer/lists"}