Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Latest commit

 

History

History
74 lines (48 loc) · 1.89 KB

README.md

File metadata and controls

74 lines (48 loc) · 1.89 KB

Liquid Swipe

GitHub license

Animation

Requirements

  • Android 5.0+

Example

To run the example project, clone the repo, and run sample

As library

GitHub Packages

Step 1 : Update root build.gradle(Project: <project_name>)

  • In Android Studio -> Make sure that you have selected Android

image

  • Under Gradle Scripts 1st File is root build.gradle

image

  • Add following code in 1st file:
    allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
    }

Step 2: Update app build.gradle(Module: <project_name>.app)

  • Now open second file
  • inside dependencies of the build.gradle of app module, use the following code
    dependencies {
	    ...
	    implementation 'com.github.Udhayarajan:liquid-swipe-android:1.0.1'
    }

Sync project and now you can use flashytabbar library

Usage

Add LiquidPager to your xml and use it like you would ViewPager


    <com.cuberto.liquid_swipe.LiquidPager
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
        

iOS

Similar library LiquidSwipe by Cuberto

Author

Cuberto Design, [email protected]

License

Liquid Swipe is available under the MIT license. See the LICENSE file for more info.