Skip to content
This repository has been archived by the owner on Dec 8, 2019. It is now read-only.

Commit

Permalink
Version 1.0.0-beta02
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed Oct 19, 2018
1 parent d7efc26 commit 22fa190
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Add this to your app module's `build.gradle` file:
```gradle
dependencies {
implementation 'com.afollestad:aesthetic:1.0.0-beta01'
implementation 'com.afollestad:aesthetic:1.0.0-beta02'
}
```

Expand Down Expand Up @@ -371,6 +371,8 @@ Aesthetic.config {
bottomNavigationBackgroundMode(BottomNavBgMode.PRIMARY_DARK)
// The tabs' background will be the accent color.
bottomNavigationBackgroundMode(BottomNavBgMode.ACCENT)
// This library will not do any automatic background color theming of bottom nav views.
bottomNavigationBackgroundMode(BottomNavBgMode.NONE)

// The selected tab's icon will be tinted with the primary color.
bottomNavigationIconTextMode(BottomNavIconTextMode.SELECTED_PRIMARY)
Expand All @@ -379,6 +381,8 @@ Aesthetic.config {
// The selected tab's icon will be tinted black or white based on
// the darkness of the overall theme.
bottomNavigationIconTextMode(BottomNavIconTextMode.BLACK_WHITE_AUTO)
// This library will not do any automatic icon/text theming of bottom nav views.
bottomNavigationIconTextMode(BottomNavBgMode.NONE)
}
```

Expand Down
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ ext.versions = [
minSdk : 16,
compileSdk : 28,
buildTools : '28.0.3',
publishVersion : '1.0.0-beta01',
publishVersionCode: 29,
publishVersion : '1.0.0-beta02',
publishVersionCode: 30,

gradlePlugin : '3.1.4',
kotlin : '1.2.71',
Expand Down

0 comments on commit 22fa190

Please sign in to comment.