How do I badge my app icon
// get a reference to the app's UI Container
const { ui } = this.props.dpapp
ui.badgeCount++;
//show the count
ui.showBadgeCount(); // get a reference to the app's UI Container
const { ui } = this.props.dpapp
ui.badgeCount--;
//hide the count
if (ui.badgeCount === 0) {
ui.hideBadgeCount();
}Last updated