{"id":27383106,"url":"https://github.com/galaxygoldfish/waveslider","last_synced_at":"2025-04-13T15:35:07.215Z","repository":{"id":170512445,"uuid":"646627200","full_name":"galaxygoldfish/waveslider","owner":"galaxygoldfish","description":"🌊 Animated wavy slider component for jetpack compose","archived":false,"fork":false,"pushed_at":"2025-03-16T23:09:17.000Z","size":22712,"stargazers_count":111,"open_issues_count":4,"forks_count":11,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-17T00:24:21.940Z","etag":null,"topics":["android","android-library","compose","kotlin","material-3","material-you","slider"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/galaxygoldfish.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-29T01:16:29.000Z","updated_at":"2025-03-16T23:09:21.000Z","dependencies_parsed_at":"2025-03-17T04:46:02.846Z","dependency_job_id":null,"html_url":"https://github.com/galaxygoldfish/waveslider","commit_stats":null,"previous_names":["galaxygoldfish/waveprogress","galaxygoldfish/waveslider"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/galaxygoldfish%2Fwaveslider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/galaxygoldfish%2Fwaveslider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/galaxygoldfish%2Fwaveslider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/galaxygoldfish%2Fwaveslider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/galaxygoldfish","download_url":"https://codeload.github.com/galaxygoldfish/waveslider/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248736922,"owners_count":21153671,"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","android-library","compose","kotlin","material-3","material-you","slider"],"created_at":"2025-04-13T15:35:06.748Z","updated_at":"2025-04-13T15:35:07.209Z","avatar_url":"https://github.com/galaxygoldfish.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"![](https://github.com/galaxygoldfish/waveslider/blob/main/media/WaveSliderBanner.png)\n\u003cdiv\u003e\n  \u003cimg src=\"https://img.shields.io/github/stars/galaxygoldfish/waveslider?style=for-the-badge\u0026color=8FDEFF\" /\u003e\n  \u003cimg src=\"https://img.shields.io/github/watchers/galaxygoldfish/waveslider?color=C9A8FF\u0026style=for-the-badge\" /\u003e\n  \u003cimg src=\"https://img.shields.io/github/v/release/galaxygoldfish/waveslider?color=8FFF9B\u0026label=version\u0026style=for-the-badge\" /\u003e\n  \u003cimg src=\"https://img.shields.io/static/v1?label=LICENSE\u0026message=APACHE%202.0\u0026color=FF9E9E\u0026style=for-the-badge\" /\u003e\n\u003c/div\u003e\n\u003cbr\u003e\n\n🌊 Animated wavy slider component as a light library for jetpack compose, similar to the slider present in the Android 13 media player notification\n\n- Customizable\n- Lightweight \n- Easy to use \n\n### Implementation\n\n1. Make sure you have JitPack added as a repository in your root-level build.gradle file\n```gradle\nallprojects {\n    repositories {\n        ..\n        maven { url 'https://jitpack.io' }\n    }\n}\n```\n\n2. Add the dependency in your ```:app``` level build.gradle\n```gradle\ndependencies {\n      ..\n      implementation 'com.github.galaxygoldfish:waveslider:VERSION'\n }\n```\n\n### Demo\n\nView the full documentation [here](https://github.com/galaxygoldfish/waveslider/wiki/Documentation), and download the latest demo app [here](https://github.com/galaxygoldfish/waveslider/releases)\n\n\u003cimg src=\"https://github.com/galaxygoldfish/waveslider/blob/main/media/WaveSliderDemoPreview.png\" width=30% align=\"left\" /\u003e\n\n```kotlin\nvar sliderValue by remember { mutableStateOf(0.4F) }\n\nWaveSlider(\n    value = sliderValue,\n    onValueChange = { sliderValue = it },\n    animationOptions = WaveSliderDefaults.animationOptions(\n        reverseDirection = false,\n        flatlineOnDrag = true,\n        animateWave = true,\n        reverseFlatline = false\n    ),\n    thumb = { DiamondThumb() },\n    colors = WaveSliderDefaults.colors(\n        thumbColor = MaterialTheme.colorScheme.secondary,\n        activeTrackColor = MaterialTheme.colorScheme.secondary\n    ),\n    waveOptions = WaveSliderDefaults.waveOptions(\n        amplitude = 10F,\n        frequency = 0.07F,\n    ),\n    modifier = Modifier.padding(\n        horizontal = 20.dp, \n        vertical = 50.dp\n    )\n)\n```\n\n\n\u003cbr\u003e\u003c/br\u003e\n### License\n```\nCopyright 2023 Sebastian Hriscu\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgalaxygoldfish%2Fwaveslider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgalaxygoldfish%2Fwaveslider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgalaxygoldfish%2Fwaveslider/lists"}