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
I found on that there is 2 setOnBalloonDismissListener exists: for Balloon and for BalloonWindow, and the second one is not working. I make it work by using listener for the first one. However the docs tells nothing about that. This happened because my deep dive into source code but normally I should be able to get this info from docs.
var tutorialStep by remember { mutableStateOf(Tutorial.NONE) }
Implement the logic for increasing the steps and have helper method Tutorial.next()
Add the LaunchedEffect at the end of the parent composable
LaunchedEffect(tutorialStep) {
if (tutorialStep ==Tutorial.NONE) tutorialStep = tutorialStep.next()
}
When you want to skip the tutorial or close it at the very end all you need to do is set the tutorialStep = null
At least this works for me as I am building a sequence of balloons and I think this should be slightly less bulky than all the conditional statements you have there and easier to understand
The kotlin version of our project is only 1.5.0 but your latest version is 1.9.0. What if you fix some bugs in the latest version and I have to use the older version
Please complete the following information:
Describe the Bug:
After update to 1.6.3
setOnBalloonDismissListener
still not working. Here is my way of using it.setOnBalloonDismissListener
So here are examples.
Expected Behavior:
setOnBalloonDismissListener
worksThe text was updated successfully, but these errors were encountered: