You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Is there a recommended procedure to accomplish the ability present and dismiss tooltips on demand? I've noticed several forks of this library that attempt to add this into the tooltip api and was wondering if there was a different recommendation from the authors.
Describe the solution you'd like
An api that allows us to quickly present and dismiss the tooltip.
Describe alternatives you've considered
I was able to achieve this functionality by having two versions of the same view with a control statement. One with a tooltip attached and one without.
if showTip {
Text("Target View")
.tooltip {
Text("Just the tip")
}
} else {
Text("Target View")
}
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Is there a recommended procedure to accomplish the ability present and dismiss tooltips on demand? I've noticed several forks of this library that attempt to add this into the tooltip api and was wondering if there was a different recommendation from the authors.
Describe the solution you'd like
An api that allows us to quickly present and dismiss the tooltip.
Describe alternatives you've considered
I was able to achieve this functionality by having two versions of the same view with a control statement. One with a tooltip attached and one without.
The text was updated successfully, but these errors were encountered: