-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove traditional callback interface, refactor code, update readme
- Loading branch information
1 parent
5e9e16c
commit 960cc86
Showing
7 changed files
with
158 additions
and
109 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
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
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,15 @@ | ||
package me.ibrahimsn.lib | ||
|
||
/** | ||
* This is a static class to hold constants | ||
*/ | ||
object Constants { | ||
const val ITEM_TAG = "item" | ||
const val ICON_ATTRIBUTE = "icon" | ||
const val TITLE_ATTRIBUTE = "title" | ||
const val WHITE_COLOR_HEX = "#FFFFFF" | ||
|
||
const val DEFAULT_INDICATOR_COLOR = "#426dfe" | ||
const val DEFAULT_TEXT_COLOR = "#444444" | ||
const val DEFAULT_TEXT_COLOR_ACTIVE = "#426dfe" | ||
} |
Oops, something went wrong.