Popover tips not affected by tip view modifiers

Tips presented using the popoverTip view modifier can't be styled using other tip view modifiers (as of beta 8).

For instance, the last two modifiers don't have any effect here:

Image(systemName: "wand.and.stars")
    .popoverTip(tip)
    .tipBackground(.red)
    .tipCornerRadius(30)

It will look like this:

Whereas applying the same modifiers to a TipView changes its look:

TipView(tip, arrowEdge: .bottom)
    .tipBackground(.red)
    .tipCornerRadius(30)

Is this intended behavior? How can we change the appearance of popup tips?

  • Filed under FB13121690. Thanks for looking into this!

Add a Comment

Replies

@FrankSchlegel unfortunately this is a known issue with popover Tips. We're working on improving it, and also updating the documentation to avoid confusion. Thanks for reporting it.