{"id":36414516,"url":"https://github.com/nxoim/evolpagink","last_synced_at":"2026-05-30T03:02:39.087Z","repository":{"id":319366340,"uuid":"1072718052","full_name":"nxoim/evolpagink","owner":"nxoim","description":"Jetpack/Compose Multiplatform paging small, fast, easy, customizable, kotlin flow based, and also platform agnostic","archived":false,"fork":false,"pushed_at":"2026-05-08T20:42:13.000Z","size":329,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-08T22:37:10.691Z","etag":null,"topics":["compose-multiplatform","composemultiplatform","jetpack-compose","jetpackcompose","kotlin","kotlin-multiplatform","pagination","pagination-library"],"latest_commit_sha":null,"homepage":"https://evolpagink.nxoim.com","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/nxoim.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-09T05:49:24.000Z","updated_at":"2026-05-08T20:40:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"0d38daf3-1e35-4ea6-a4fe-df922731353a","html_url":"https://github.com/nxoim/evolpagink","commit_stats":null,"previous_names":["nxoim/evolpagink"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/nxoim/evolpagink","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nxoim%2Fevolpagink","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nxoim%2Fevolpagink/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nxoim%2Fevolpagink/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nxoim%2Fevolpagink/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nxoim","download_url":"https://codeload.github.com/nxoim/evolpagink/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nxoim%2Fevolpagink/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33678271,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-30T02:00:06.278Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["compose-multiplatform","composemultiplatform","jetpack-compose","jetpackcompose","kotlin","kotlin-multiplatform","pagination","pagination-library"],"created_at":"2026-01-11T16:56:44.817Z","updated_at":"2026-05-30T03:02:39.069Z","avatar_url":"https://github.com/nxoim.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"![evolpagink](https://img.shields.io/maven-central/v/com.nxoim.evolpagink/core?label=evolpagink)\n\n![badge][badge-ios]\n![badge][badge-js]\n![badge][badge-jvm]\n![badge][badge-linux]\n![badge][badge-windows]\n![badge][badge-mac]\n![badge][badge-tvos]\n![badge][badge-watchos]\n# evolpagink\nPagination made truly small, truly easy to use. The evil, unknown counterpart of... uhm.. some *other* commonly used pagination library.\n\u003e [!IMPORTANT]\n\u003e Quick start in [documentation](https://evolpagink.nxoim.com/quick-start/installation).\n\n## how small?\nFirst of all - the amount of source code is small.\n\nBut regarding the amount of boilerplate - you define your pageable source:\n```kotlin\nval pageable = pageable(\n    coroutineScope,\n    onPage = { index -\u003e\n        yourSource.getPage(index)\n        // getPage is Flow\u003cList\u003cYourItem\u003e\u003e\n    },\n    strategy = prefetchPageAmount(\n        // this strategy will use your ui to fetch\n        // items to fill the viewport + prefetch\n        // specified amount beyond viewport\n        initialPage = 0,\n        minimumPageAmount = 2\n    )\n)\n```\n\nAaaaaand then you use it. For example in compose it looks like:\n```kotlin\nval lazyListState = rememberLazyListState()\nval pageableState = yourModel.pageable.toState(\n    lazyListState,\n    key = { item -\u003e item.maybeSomeId }\n)\n\nLazyColumn(lazyListState) {\n    // this is an overload that automatically\n    // uses the key lambda from above\n    items(pageableState) { item -\u003e\n        YourItem(item)\n    }\n    // by the way the overload prevents the\n    // import fights of items(count: Int) \n    // vs items(items: List\u003cT\u003e)!!\n}\n```\n\n## fast?\nTheres a microbenchmark in the repository. Clone the repo and run it. If you find the benchmark unsatisfactory - i'd very much appreciate a discussion in an open issue!\n\n## customizable?\nYes. If you are unsatisfied with any of the strategies for fetching and prefetching items - you can easily create your own by implementing `PageFetchStrategy`. You can tailor the behavior precisely.\n\n## what else?\n- evolpagink is Compose Multiplatform first, but the **core** logic being **platform agnostic** leaves room for compatibility with other UI frameworks.\n- If the library becomes unmaintained - forking and maintaining it yourself should be easy due to the small size and code being mostly self documenting.\n\n## Contributions\nTo contribute:\n- First open an issue and describe your contribution so it can be discussed\n- Then link the branch of your fork, containing the contribution, in the issue\n- And then the contribution may be merged\n\n## Credits\nKudos to the [Tiler](https://github.com/tunjid/Tiler) project for being an inspiration and for the benchmark\n\n[badge-android]: http://img.shields.io/badge/-android-6EDB8D.svg?style=flat\n\n[badge-jvm]: http://img.shields.io/badge/-jvm-DB413D.svg?style=flat\n\n[badge-js]: http://img.shields.io/badge/-js-F8DB5D.svg?style=flat\n\n[badge-js-ir]: https://img.shields.io/badge/support-[IR]-AAC4E0.svg?style=flat\n\n[badge-nodejs]: https://img.shields.io/badge/-nodejs-68a063.svg?style=flat\n\n[badge-linux]: http://img.shields.io/badge/-linux-2D3F6C.svg?style=flat\n\n[badge-windows]: http://img.shields.io/badge/-windows-4D76CD.svg?style=flat\n\n[badge-wasm]: https://img.shields.io/badge/-wasm-624FE8.svg?style=flat\n\n[badge-apple-silicon]: http://img.shields.io/badge/support-[AppleSilicon]-43BBFF.svg?style=flat\n\n[badge-ios]: http://img.shields.io/badge/-ios-CDCDCD.svg?style=flat\n\n[badge-mac]: http://img.shields.io/badge/-macos-111111.svg?style=flat\n\n[badge-watchos]: http://img.shields.io/badge/-watchos-C0C0C0.svg?style=flat\n\n[badge-tvos]: http://img.shields.io/badge/-tvos-808080.svg?style=flat","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnxoim%2Fevolpagink","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnxoim%2Fevolpagink","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnxoim%2Fevolpagink/lists"}