-
-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compose: provide the way to get the end of the sequentially showed balloons. #525
Comments
Hey @Monabr, you can control sequential balloons more accurately by using coroutineScope.launch {
customListBalloon.awaitAlignBottom(anchorView)
customProfileBalloon.awaitAlignBottom(circleImageView, 0, 0)
customTagBalloon.awaitAlignTop(bottomNavigationView, 130, 0)
} |
@skydoves Yea, but how can I know when the last one is closed? |
You can use the |
@skydoves This not working when I use .await_ This mentioned in your docs. |
Ah, then this should be reported as a bug. I will let you know for the updates soon. |
This issue has been fixed in the current snapshot version. It will be contained in the next stable release. Thanks for reporting this! |
@skydoves Thank you. Please also update the docs. This line:
|
Thanks for pointing out this issue @Monabr. In the next release, you can use the |
@Monabr 1.6.3 has been released, and now |
I need to show tooltips after first open app only one time. I am using "Show up Balloon Sequentially" but how can I get the end of this? I need to write it only after last balloon is dismissed. This is because of recomposition. The last balloon will be canceled too early because of my property will change view in compose.
The text was updated successfully, but these errors were encountered: