Remove TabBar.BadgeAt

With this you can add a badge to a tab bar

Self.ParentTabBar.BadgeAt(0) = “42”

This shows the red badge with no counter/text

Self.ParentTabBar.BadgeAt(0) = “”

How can I remove the red badge icon?

The doc says in the Enum (after Badge):
None Don’t display the notification

https://documentation.xojo.com/api/mobile/mobilenotifications.html#authorizationoptions

i believe that should be a bug since there is no other way to clear it in xojo. Maybe @Jeremie_L knows how to deal with this ?

This has nothing to do with iosTabbar

error in the documentation, sorry. Usually, ,when I search, I fall on mobile…

Sorry.

I’m not at my computer so I’m not 100% sure but I believe @Jeremie_L design extensions cover this:

Self.SetTabBarBadgeXC(0, “”)
1 Like

Yes, this works. Than you