// Customise the App Inbox styling using the below mentioned parameters
val styleConfig = CastledInboxDisplayConfig()
styleConfig.emptyMessageViewText = "There are no inbox items."
styleConfig.emptyMessageViewTextColor = "#000000"
styleConfig.inboxViewBackgroundColor = "#ffffff"
styleConfig.navigationBarBackgroundColor = "#0000ff"
styleConfig.navigationBarTitleColor = "#ffffff"
styleConfig.navigationBarTitle = "Castled Inbox"
styleConfig.hideNavigationBar = true
styleConfig.hideBackButton = false // Set to true if back button needs to be hidden
styleConfig.backButtonResourceId = myCustomButtonResId // Required only if you want to override default back button
// Categories tab styling
styleConfig.showCategoriesTab = true
styleConfig.tabBarDefaultBackgroundColor ="#00203F"
styleConfig.tabBarSelectedBackgroundColor = "#EEA47F"
styleConfig.tabBarDefaultTextColor = "#ADEFD1"
styleConfig.tabBarSelectedTextColor = "#00539C"
styleConfig.tabBarIndicatorBackgroundColor = "#FEE715"
CastledNotifications.showAppInbox(context, styleConfig)