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
As the title states, is it possible for us to pass things to the highlight overlay? For example, we may want to show some components to tell the user what exactly we are highlighting and what it is used for.
The text was updated successfully, but these errors were encountered:
This is currently not supported, but you can achieve the same result by grouping the overlay together with whatever component you want to show on top:
<View /* Probably needs to be absolute & full screen, depending on where it's placed of course :) */>
{highlightId != null && <TutorialOverlay tutorial={highlightId} />}
<HighlightOverlay highlightedElementId={highlightId} />
</View>
I am currently working on what I like to call "decorators". They are utility components that can be used to decorate the highlight, including adding "tooltips" to the highlighted areas and more. I can't promise that this will be done soon though, I don't have a lot of free time to work on this project unfortunately.
As the title states, is it possible for us to pass things to the highlight overlay? For example, we may want to show some components to tell the user what exactly we are highlighting and what it is used for.
The text was updated successfully, but these errors were encountered: