-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Slippy-Bottom-Bar released for version 1.0
- Loading branch information
1 parent
eedad60
commit cc9f7ef
Showing
12 changed files
with
166 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<color name="white">#FFFFFFFF</color> | ||
<color name="red">#FF0000</color> | ||
<color name="enabledTextColor">#FF3C3C3C</color> | ||
<color name="disabledTextColor">#B9BCBE</color> | ||
<color name="disabledIconColor">#B9BCBE</color> | ||
<color name="enableIconColor">#2196F3</color> | ||
<color name="enabledIconColor">#2196F3</color> | ||
<color name="dividerColor">#2196F3</color> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,4 @@ | ||
jdk: | ||
- openjdk11 | ||
before_install: | ||
- ./scripts/prepareJitpackEnvironment.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 1,11 @@ | ||
package com.fa.lib | ||
|
||
import androidx.annotation.ColorRes | ||
import androidx.annotation.DimenRes | ||
import androidx.compose.ui.text.style.TextAlign | ||
|
||
data class SlippyBar( | ||
@DimenRes val textSize: Int? = null, | ||
@ColorRes val enabledTextColor: Int? = null, | ||
@ColorRes val disabledTextColor: Int? = null, | ||
@DimenRes val iconSize: Int, | ||
@ColorRes val disabledIconColor: Int, | ||
@ColorRes val enabledIconColor: Int, | ||
@ColorRes val dividerColor: Int? = null, | ||
val textAlign: TextAlign = TextAlign.Center, | ||
val maxLines: Int = 1 | ||
@ColorRes val backgroundColor: Int, | ||
val textStyle: SlippyTextStyle? = null, | ||
val iconStyle: SlippyIconStyle? = null, | ||
val dividerStyle: SlippyDividerStyle? = null, | ||
val animationMillis: Int = 250 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,7 @@ | ||
package com.fa.lib | ||
|
||
import androidx.annotation.ColorRes | ||
|
||
data class SlippyDividerStyle( | ||
@ColorRes val dividerColor: Int? = null, | ||
) |
Oops, something went wrong.