Skip to content

Nkgohil007/LiquidNavBar

 
 

Repository files navigation

Liquid NavBar

  • Liquid NavBar Provides a bottom navigation view with liquid animation.

    ezgif.com-gif-maker__3_

Usage

Dependencies

  • Step 1. Add the JitPack repository to your build file

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

        allprojects {
    	    repositories {
                	...
    		maven { url 'https://jitpack.io' }
                	...
    	    }
        }
  • Step 2. Add the dependency

    Add it in your app module build.gradle:

        dependencies {
            ...
            implementation 'com.github.Mindinventory:LiquidNavBar:0.0.1'
            ...
        }

Implementation

  • Step 1. Create menu file("menu_bottom_navigation") with menu items.
<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <group android:checkableBehavior="single">
        <item
            android:id="@+id/nav_camera"
            android:icon="@drawable/home"
            android:title="@string/feed" />
        <item
            android:id="@+id/nav_gallery"
            android:icon="@drawable/ic_gallery"
            android:title="@string/gallery" />
        <item
            android:id="@+id/nav_slideshow"
            android:icon="@drawable/ic_favorite"
            android:title="@string/favorite" />
        <item
            android:id="@+id/nav_manage"
            android:icon="@drawable/ic_setting"
            android:title="@string/settings" />
    </group>

</menu>
  • Step 2. Add LiquidNavBar view in to your activity_main.xml:
<com.mindinventory.liquidnavbar.ui.LiquidNavBar 
	android:id="@+id/bottomNavigationView"
        android:layout_width="match_parent" 
	android:layout_height="match_parent"
        app:backgroundTintNavigation="@color/colorPrimary"
        app:layout_constraintBottom_toBottomOf="parent" 
	app:menu="@menu/menu_bottom_navigation" />
  • Step 3. Provide fragment's parent view and implement animation listener
  bottomNavigationView.setAnimationListener(container, object : ViewAnimationListener {
  override fun onAnimationStart(animation: Animation?) {

            }

            override fun onAnimationEnd(animation: Animation?, fragment: Fragment?) {
                fragment?.let { changeFragment(it) }
            }


            override fun onAnimationRepeat(animation: Animation?) {

            }
        })
  • Step 4. Implement navigation listener
  bottomNavigationView.setNavigationListener(object :
            LiquidNavBar.OnNavigationItemSelectListener {
            override fun onNavigationItemSelected(indexOfItemSelected: Int): Boolean {
                return true
            }

        })
Attributes Usage
app:backgroundTintNavigation Liquid Navbar background color

Requirements

  • minSdkVersion >= 21
  • Androidx

LICENSE!

LiquidNavBar is MIT-licensed

Let us know!

We’d be really happy if you send us links to your projects where you use our component. Just send an email to sales@mindinventory.com And do let us know if you have any questions or suggestion regarding our work.

Please feel free to use this component and Let us know if you are interested to building Apps or Designing Products.

app development

About

LiquidNavBar library provides a bottom navigation view with smooth liquid animation.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Kotlin 96.8%
  • Java 3.2%