Skip to content

ComposePagerSnapHelper library that works just like PagerSnapHelper for recyclerview.

License

Notifications You must be signed in to change notification settings

Nuglif/compose-pager-snap-helper

 
 

Repository files navigation

Release version

compose-pager-snap-helper

It is a pager style snapping library in horizontal orientation. Provide the width used in the item in horizontally scrolling list, and it will calculate when to snap to the target view.

Download

If the gradle cannot build the project because of this library, update your settings.gradle file with

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
    repositories {
        google()
        mavenCentral()
        jcenter() // Warning: this repository is going to shut down soon
        maven { url 'https://jitpack.io' }
    }
}

Add it in your root build.gradle at the end of repositories:

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

Add it in your app build.gradle:

dependencies {
    implementation "com.github.aakarshrestha:compose-pager-snap-helper:[version]"
}

Compose pager snap helper demo

composePagerSnapHelper

Usage

@Composable
fun ComposePagerSnapHelper(
    width: Dp,
    content: @Composable (LazyListState) -> Unit
)

  • @param width width of the item in horizontally scrolling list.
  • @param content a block which describes the content. Inside this block, you will have access to [LazyListState].

Implementation: Check out the sample app to see how it works.

ComposePagerSnapHelper(
        width = 320.dp, //required
        content = { listState -> //this param is provided by the method itself, add this param below.
            LazyRow(
                state = listState, //add listState param
            ) {
                items(count = count) { item ->
                    Card(
                        modifier = Modifier
                            .width(width)
                            .height(350.dp)
                            .padding(
                                start = if (item == 0) 16.dp else 16.dp,
                                top = 16.dp, bottom = 16.dp,
                                end = if (item == 4) 16.dp else 8.dp),
                        backgroundColor = Color.LightGray, shape = RoundedCornerShape(12)
                    ) {
                        //Put text or whatever here

                    }
                }
            }
        }
    )

Check out Swipe to refresh library - Jetpack compose android

License

Copyright 2021 Aakar Shrestha

Permission is hereby granted, free of charge, 
to any person obtaining a copy of this software and associated 
documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to permit persons
to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included 
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS 
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 
THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

ComposePagerSnapHelper library that works just like PagerSnapHelper for recyclerview.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Kotlin 100.0%