Skip to content

Releases: raselkhan9560/screen_setup_library

Change Nav,Title bar color

15 Sep 03:22
a505299
Compare
Choose a tag to compare

You can change bar colors

add repositories on your root project gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}

add dependencies on you app gradle
dependencies {
implementation 'com.github.raselkhan9560:screen_setup_library:-project_version'
}

To change status and navigation bar color use ChangeAll(this,resrource.getColor(R.color.white))

To change only status bar color use ChangeStatusBar(this,resrource.getColor(R.color.white))

To change only navigation bar color use ChangeNavigationBarColor(this,resrource.getColor(R.color.white))