paginator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.jamal-wia</groupId>
<artifactId>paginator</artifactId>
<version>8.4.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.jamal-wia</groupId>
<artifactId>paginator</artifactId>
<version>8.4.0</version>
<name>Paginator — KMP pagination library for Android, iOS & JVM</name>
<description>Paginator is a pagination / paging library for Kotlin Multiplatform (Android, iOS, JVM, Desktop). A pure-Kotlin alternative to Jetpack Paging 3 with cursor-based pagination, bidirectional scroll (chat / messenger feeds), jump-to-page, bookmarks, pluggable page caching (LRU / FIFO / TTL), element-level CRUD, infinite scroll, prefetch, state serialization via kotlinx.serialization, and reactive UI state via Kotlin Flows. Zero platform dependencies — usable across data, domain and presentation layers in Clean Architecture.</description>
<url>https://github.com/jamal-wia/Paginator</url>
<inceptionYear>2023</inceptionYear>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>jamal-wia</id>
<name>Jamal Aliev</name>
<url>https://github.com/jamal-wia</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/jamal-wia/Paginator.git</connection>
<developerConnection>scm:git:ssh://git@github.com/jamal-wia/Paginator.git</developerConnection>
<url>https://github.com/jamal-wia/Paginator</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/jamal-wia/Paginator/issues</url>
</issueManagement>
<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/jamal-wia/Paginator/actions</url>
</ciManagement>
<properties>
<project.tags>kotlin, kotlin-multiplatform, kmp, android, ios, jvm, pagination, paging, paginator, cursor-pagination, infinite-scroll, bidirectional-pagination, jetpack-paging-alternative, coroutines, flow, clean-architecture, messenger, chat-feed, graphql-connections</project.tags>
</properties>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>2.3.20</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>atomicfu</artifactId>
<version>0.32.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
<version>1.10.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-serialization-json</artifactId>
<version>1.11.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>