Skip to content

UI Component. Simple horizontal divider with title for android.

Notifications You must be signed in to change notification settings

utsavdotpro/HorizontalDivider

Repository files navigation

HorizontalDivider

UI Component. Simple horizontal divider with title for android.

Sample

Implementation

Step 1: Add to project level build.gradle

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

Step 2: Add to app level build.gradle

dependencies {
    implementation 'com.github.u-barnwal:HorizontalDivider:VERSION'
}

How to use

Create view

<com.isolpro.library.horizontaldivider.HorizontalDivider
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  app:title="Center"
  app:position="Center" />
Position Value
LEFT left
RIGHT right

Features

  • Fully adaptive
  • Lightweight

Links