https://github.com/seanghay/statusbar
:art: A small library for configuring status bar color in Fragment.
https://github.com/seanghay/statusbar
android fragment kotlin navigation-component
Last synced: 5 months ago
JSON representation
:art: A small library for configuring status bar color in Fragment.
- Host: GitHub
- URL: https://github.com/seanghay/statusbar
- Owner: seanghay
- License: apache-2.0
- Created: 2019-12-16T04:45:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-23T09:46:00.000Z (about 4 years ago)
- Last Synced: 2025-07-28T19:49:10.404Z (11 months ago)
- Topics: android, fragment, kotlin, navigation-component
- Language: Kotlin
- Homepage:
- Size: 148 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Status Bar
[](https://opensource.org/licenses/Apache-2.0)

A small library for configuring status bar color in Fragment.
It can be useful in Navigation Component where we have only one Activity but many Fragments.
#### Try it and give us feedback! :smiley:
## Usage in Kotlin Only
```kotlin
class MyFragment: Fragment() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
// A simple extension
statusBar.color(Color.WHITE).light(true)
}
}
```
## Usage in Java
```java
public class MyFragment extends Fragment {
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
StatusBar.with(this)
.color(Color.WHITE)
.light(true);
}
}
```
## Installation
1. Add JitPack
```gradle
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
```
2. Add dependency
```gradle
dependencies {
implementation 'com.github.seanghay:statusbar:1.0.1'
}
```
## License
Copyright 2019 Seanghay Yath
Licensed 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.