├── .editorconfig ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── asset ├── header.png ├── preview_calendar.gif ├── preview_contacts.gif └── preview_grid.gif ├── convention-plugins ├── build.gradle.kts ├── settings.gradle.kts └── src │ └── main │ └── kotlin │ ├── module.publication.gradle.kts │ └── root.publication.gradle.kts ├── demo ├── .gitignore ├── README.md ├── composeApp │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── me │ │ │ │ └── gingerninja │ │ │ │ └── lazy │ │ │ │ └── stickyheaders │ │ │ │ └── sample │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ └── strings.xml │ │ ├── commonMain │ │ ├── composeResources │ │ │ └── drawable │ │ │ │ ├── compose-multiplatform.xml │ │ │ │ └── palette.xml │ │ └── kotlin │ │ │ └── me │ │ │ └── gingerninja │ │ │ └── lazy │ │ │ └── sample │ │ │ ├── App.kt │ │ │ ├── DemoSettings.kt │ │ │ ├── Destination.kt │ │ │ ├── SettingsDialog.kt │ │ │ ├── grid │ │ │ ├── GridScreen.kt │ │ │ └── SimpleVerticalGrid.kt │ │ │ ├── home │ │ │ └── HomeScreen.kt │ │ │ ├── list │ │ │ ├── CalendarList.kt │ │ │ ├── CalendarRowList.kt │ │ │ ├── ContactList.kt │ │ │ └── ListScreen.kt │ │ │ └── ui │ │ │ ├── component │ │ │ ├── NavCard.kt │ │ │ └── NavScreen.kt │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── me │ │ │ └── gingerninja │ │ │ └── lazy │ │ │ └── sample │ │ │ └── Main.kt │ │ ├── iosMain │ │ └── kotlin │ │ │ └── MainViewController.kt │ │ └── wasmJsMain │ │ ├── kotlin │ │ └── me │ │ │ └── gingerninja │ │ │ └── lazy │ │ │ └── sample │ │ │ └── Main.kt │ │ └── resources │ │ ├── index.html │ │ └── styles.css └── iosApp │ ├── Configuration │ └── Config.xcconfig │ ├── iosApp.xcodeproj │ └── project.pbxproj │ └── iosApp │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── app-icon-1024.png │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── iOSApp.swift ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── kotlin-js-store └── yarn.lock ├── settings.gradle.kts ├── spotless ├── copyright.kt └── copyright.xml └── sticky-headers ├── api ├── android │ └── sticky-headers.api └── desktop │ └── sticky-headers.api ├── build.gradle.kts └── src └── commonMain └── kotlin └── me └── gingerninja └── lazy ├── GridStickyHeaders.kt ├── ListStickyHeaders.kt └── StickyHeadersLayout.kt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/README.md -------------------------------------------------------------------------------- /asset/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/asset/header.png -------------------------------------------------------------------------------- /asset/preview_calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/asset/preview_calendar.gif -------------------------------------------------------------------------------- /asset/preview_contacts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/asset/preview_contacts.gif -------------------------------------------------------------------------------- /asset/preview_grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/asset/preview_grid.gif -------------------------------------------------------------------------------- /convention-plugins/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/convention-plugins/build.gradle.kts -------------------------------------------------------------------------------- /convention-plugins/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/convention-plugins/settings.gradle.kts -------------------------------------------------------------------------------- /convention-plugins/src/main/kotlin/module.publication.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/convention-plugins/src/main/kotlin/module.publication.gradle.kts -------------------------------------------------------------------------------- /convention-plugins/src/main/kotlin/root.publication.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/convention-plugins/src/main/kotlin/root.publication.gradle.kts -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/composeApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/build.gradle.kts -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/kotlin/me/gingerninja/lazy/stickyheaders/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/kotlin/me/gingerninja/lazy/stickyheaders/sample/MainActivity.kt -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/composeApp/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/composeResources/drawable/compose-multiplatform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/composeResources/drawable/compose-multiplatform.xml -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/composeResources/drawable/palette.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/composeResources/drawable/palette.xml -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/App.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/DemoSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/DemoSettings.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/Destination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/Destination.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/SettingsDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/SettingsDialog.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/grid/GridScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/grid/GridScreen.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/grid/SimpleVerticalGrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/grid/SimpleVerticalGrid.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/home/HomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/home/HomeScreen.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/list/CalendarList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/list/CalendarList.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/list/CalendarRowList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/list/CalendarRowList.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/list/ContactList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/list/ContactList.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/list/ListScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/list/ListScreen.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/ui/component/NavCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/ui/component/NavCard.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/ui/component/NavScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/ui/component/NavScreen.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/ui/theme/Color.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/ui/theme/Theme.kt -------------------------------------------------------------------------------- /demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/commonMain/kotlin/me/gingerninja/lazy/sample/ui/theme/Type.kt -------------------------------------------------------------------------------- /demo/composeApp/src/desktopMain/kotlin/me/gingerninja/lazy/sample/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/desktopMain/kotlin/me/gingerninja/lazy/sample/Main.kt -------------------------------------------------------------------------------- /demo/composeApp/src/iosMain/kotlin/MainViewController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/iosMain/kotlin/MainViewController.kt -------------------------------------------------------------------------------- /demo/composeApp/src/wasmJsMain/kotlin/me/gingerninja/lazy/sample/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/wasmJsMain/kotlin/me/gingerninja/lazy/sample/Main.kt -------------------------------------------------------------------------------- /demo/composeApp/src/wasmJsMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/wasmJsMain/resources/index.html -------------------------------------------------------------------------------- /demo/composeApp/src/wasmJsMain/resources/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/composeApp/src/wasmJsMain/resources/styles.css -------------------------------------------------------------------------------- /demo/iosApp/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/iosApp/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /demo/iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /demo/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /demo/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png -------------------------------------------------------------------------------- /demo/iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demo/iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /demo/iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /demo/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demo/iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/demo/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/gradlew.bat -------------------------------------------------------------------------------- /kotlin-js-store/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/kotlin-js-store/yarn.lock -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /spotless/copyright.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/spotless/copyright.kt -------------------------------------------------------------------------------- /spotless/copyright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/spotless/copyright.xml -------------------------------------------------------------------------------- /sticky-headers/api/android/sticky-headers.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/sticky-headers/api/android/sticky-headers.api -------------------------------------------------------------------------------- /sticky-headers/api/desktop/sticky-headers.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/sticky-headers/api/desktop/sticky-headers.api -------------------------------------------------------------------------------- /sticky-headers/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/sticky-headers/build.gradle.kts -------------------------------------------------------------------------------- /sticky-headers/src/commonMain/kotlin/me/gingerninja/lazy/GridStickyHeaders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/sticky-headers/src/commonMain/kotlin/me/gingerninja/lazy/GridStickyHeaders.kt -------------------------------------------------------------------------------- /sticky-headers/src/commonMain/kotlin/me/gingerninja/lazy/ListStickyHeaders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/sticky-headers/src/commonMain/kotlin/me/gingerninja/lazy/ListStickyHeaders.kt -------------------------------------------------------------------------------- /sticky-headers/src/commonMain/kotlin/me/gingerninja/lazy/StickyHeadersLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkorossy/lazy-sticky-headers/HEAD/sticky-headers/src/commonMain/kotlin/me/gingerninja/lazy/StickyHeadersLayout.kt --------------------------------------------------------------------------------