{"id":27404888,"url":"https://github.com/hamid97m/herodatepicker","last_synced_at":"2025-04-14T05:48:11.464Z","repository":{"id":156275435,"uuid":"279892890","full_name":"hamid97m/HeroDatePicker","owner":"hamid97m","description":"A Jetpack Compose Date Picker for Persian (Jalali) Calendar by Jetpack Compose.","archived":false,"fork":false,"pushed_at":"2025-01-26T13:39:06.000Z","size":1399,"stargazers_count":24,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-26T14:24:46.822Z","etag":null,"topics":["android","androidlibrary","calender","date-picker","datepicker","jetpack-compose","kotlin","persian","persian-date-picker","persian-to-gregorian"],"latest_commit_sha":null,"homepage":"https://github.com/hamid97m/HeroDatePicker","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/hamid97m.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,"governance":null}},"created_at":"2020-07-15T14:36:52.000Z","updated_at":"2025-01-26T13:25:52.000Z","dependencies_parsed_at":"2023-11-25T10:24:12.110Z","dependency_job_id":"2a772f9f-07fc-4f2a-ba91-57c8348d40eb","html_url":"https://github.com/hamid97m/HeroDatePicker","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamid97m%2FHeroDatePicker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamid97m%2FHeroDatePicker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamid97m%2FHeroDatePicker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamid97m%2FHeroDatePicker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hamid97m","download_url":"https://codeload.github.com/hamid97m/HeroDatePicker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248830404,"owners_count":21168272,"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","androidlibrary","calender","date-picker","datepicker","jetpack-compose","kotlin","persian","persian-date-picker","persian-to-gregorian"],"created_at":"2025-04-14T05:48:06.669Z","updated_at":"2025-04-14T05:48:11.450Z","avatar_url":"https://github.com/hamid97m.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HeroDatePicker\n\n\nHeroDatePicker is a customizable date picker component for Android Jetpack Compose that allows users\nto easily select Persian (Jalali) dates in a visually appealing way. It features a sleek and modern\ndesign, with smooth animations and intuitive controls.\n\n\u003cimg alt=\"Banner\" src=\"./images/banner.jpg\" width=\"500\"/\u003e\n\n[![Download](https://img.shields.io/jitpack/version/com.github.hamid97m/herodatepicker)](https://jitpack.io/#hamid97m/herodatepicker)\n\n## Features:\n\n- Support for Persian (Jalali) calendar system\n- Customizable date format and locale\n- Ability to disable specific dates or date ranges\n- Integration with ViewModel for state management\n- Easy-to-use API with clear documentation\n\n\n## Setup\n\n### Configure the repositories\n\n`HeroDatePicker` is available through the *JitPack* repository. You can declare this repository in\nyour build script as follows:\n\n\u003cdetails open\u003e\n\u003csummary\u003eKotlin DSL\u003c/summary\u003e\n\n```kotlin\nrepositories {\n    maven { url = uri(\"https://jitpack.io\") }\n}\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eGroovy DSL\u003c/summary\u003e\n\n```groovy\nrepositories {\n    maven { url 'https://jitpack.io' }\n}\n```\n\n\u003c/details\u003e\n\n### Add the dependency\n\nAfter repository configuration, add a dependency on HeroDatePicker to your module's `build.gradle`\nfile:\n\n\u003cdetails open\u003e\n\u003csummary\u003eKotlin DSL\u003c/summary\u003e\n\n```kotlin\ndependencies {\n    implementation(\"com.github.hamid97m:herodatepicker:1.0.0\")\n}\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eGroovy DSL\u003c/summary\u003e\n\n```groovy\ndependencies {\n    implementation 'com.github.hamid97m:herodatepicker:1.0.0'\n}\n```\n\n\u003c/details\u003e\n\n## Usage\n\n```kotlin\nHeroDatePicker(Modifier.fillMaxWidth()) { selectedDate -\u003e\n    val (year, month, day) = selectedDate\n    println(\"Selected Date: $year/$month/$day\")\n}\n```\n\nIn addition, there is a sample app available in the\nproject's [sample directory](https://github.com/hamid97m/HeroDatePicker/tree/master/sample) that\ndemonstrates how to use the library.\n\n\u003cp align=\"center\"\u003e\n\u003cimg alt=\"Screenshot\" src=\"./images/screenshot.gif\" width=\"250\"/\u003e\n\u003c/p\u003e\n\n## Contributing\nWe welcome contributions from the community! If you find a bug or have a feature request, please open an issue on the GitHub repository. If you'd like to contribute code, please fork the repository and submit a pull request.\n\n## License\nHeroDatePicker is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhamid97m%2Fherodatepicker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhamid97m%2Fherodatepicker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhamid97m%2Fherodatepicker/lists"}