-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SUITEDEV-36595 Co-authored-by: davidSchuppa <[email protected]> Co-authored-by: megamegax <[email protected]> Co-authored-by: matusekma <[email protected]>
- Loading branch information
1 parent
e4cd20e
commit fd791a7
Showing
4 changed files
with
23 additions
and
24 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
11 changes: 11 additions & 0 deletions
11
sample/src/main/kotlin/com/emarsys/sample/main/navigation/NavigationBarItem.kt
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,11 @@ | ||
package com.emarsys.sample.main.navigation | ||
|
||
import com.emarsys.sample.R | ||
|
||
sealed class NavigationBarItem(var route: String, var icon: Int, var title: String) { | ||
data object BottomDashBoard : NavigationBarItem("dashboard", R.drawable.ic_settings, "Dashboard") | ||
data object BottomMobileEngage : NavigationBarItem("mobile-engage", R.drawable.mobile_engage_logo_icon, "Mobile Engage") | ||
data object BottomInbox : NavigationBarItem("inbox", R.drawable.inbox_mailbox_icon, "Inbox") | ||
data object BottomPredict : NavigationBarItem("predict", R.drawable.predict_scarab_icon, "Predict") | ||
data object BottomInApp : NavigationBarItem("inapp", R.drawable.mobile_engage_logo_icon, "InApp") | ||
} |
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
11 changes: 0 additions & 11 deletions
11
sample/src/main/kotlin/com/emarsys/sample/main/navigation/NavigationbarItem.kt
This file was deleted.
Oops, something went wrong.