Giter Club home page Giter Club logo

finite-cover-flow's Introduction

Finite Coverflow

The Viewpager2 PagerTransformer library which is helpful to create amazing carousel, image slider and cover flows. Examples

                             


Gradle Dependency

Firstly Add Jitpack to your repositories.

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

Add finite flow and viewpager2 library to your app module's build.gradle file:

dependencies {
    //Cover flow
    implementation 'com.github.saeed-younus:finite-cover-flow:1.0.1'
    //ViewPager2
    implementation 'androidx.viewpager2:viewpager2:1.0.0-beta04'
}

Layout

You add FinitePagerContainer view in your layout file and inside it add ViewPager2 which holds your view or fragment adapter

    <com.saeed.infiniteflow.lib.FinitePagerContainer
        android:id="@+id/pager_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <androidx.viewpager2.widget.ViewPager2
            android:id="@+id/view_pager"
            android:layout_width="150dp"
            android:layout_height="150dp"
            android:layout_gravity="center"
            android:orientation="horizontal" />

    </com.saeed.infiniteflow.lib.FinitePagerContainer>

NOTE: viewpager2 size specify your single item layout size. If you want to fullscreen slider then check out fullscreen example.

ORIENTATION: You can change orientation easily in viewpager2 you just need set oreintation in xml.

IMPLEMENTATION

In your Activity you add adapter for viewpager2 and set three types of animation for your FinitePagerContainer.

Set up PagerContainer

val pagerContainer = findViewById<FinitePagerContainer>(R.id.pager_container)
// Set Your Adapter with viewPager adapter
pagerContainer.getViewPager().adapter = RecyclerPagerAdapter()

Simple Slider

// For Apply Simple Slider Animation no overlapping no stack
pagerContainer.setSimpleSlider(
    unSelectedItemRotation = 0f,    // Rotation of Unselected Items
    unSelectedItemAlpha = 0.2f,     // Alpha Value of unselected Items
    minScale = 0.5f                 // Min Scale on unselected Items
)


Overlap Slider

// For Apply Simple Slider Animation no overlapping no stack
pagerContainer.setOverlapSlider(
    unSelectedItemRotation = 0f,    // Rotation of Unselected Items
    unSelectedItemAlpha = 0.2f,     // Alpha Value of unselected Items
    minScale = 0.5f,                // Min Scale on unselected Items
    itemGap = 0f                    // Gap between Items
)


Stack Slider

// For Apply Stack Animation to your ViewPager
pagerContainer.setStackSlider(
    behindScale = 0.7f, // Scale Value for Behind Items
    behindAlpha = 0f    // Opacity Value for Behind Items
)

SUPPORT ❤️

Find this library useful? Support it by joining stargazers for this repository ⭐️
And follow me for my next creations 👍

License

Copyright 2017 The Android Open Source Project, Inc.

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

finite-cover-flow's People

Contributors

saeed-younus avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.