-
-
Notifications
You must be signed in to change notification settings - Fork 154
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
FEATURE REQUEST: Persistent FlashMessage #253
Comments
Temp hack: const recurShow = () =>
showMessage({
...
onHide: () => recurShow(),
});
recurShow(); |
Hi @shawarmaz, I this case how user could dismiss the message? It will be always fixed at the top of the app? The only way to close will be if programmatically hide then? |
Yes, programmatically. Use cases are: Network Disconnected, Active Voice/Video Call, Recording Voice Memo, Tracking Location, and many more related to state rather than notifications Opens up a whole slew of possibilities, making it no longer just a toast/message, but an "in-app status-bar". Would be feature complete if it could push the entire app down as well, rather than zindexing over the app, a-la-Whatsapp, Discord, iOS Voice memos, Uber Driver, etc |
[shawarmaz] here you go, happy to help (: |
Great lib.
autoHide: false | true
both still allow the user to dismiss FlashMessage.It would be great if we could also prevent the user from dismissing FlashMessage.
Is this doable with the current API?
The text was updated successfully, but these errors were encountered: