We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
No description provided.
The text was updated successfully, but these errors were encountered:
You can do it like this:
private var currentPresentation: PresentationDisplay? = null "dismissPresentation" -> { try { currentPresentation?.dismiss() result.success(true) } catch (e: Exception) { result.success(false) } } "resumePresentation" -> { try { currentPresentation?.show() result.success(true) } catch (e: Exception) { result.success(false) } }
The Presentation class has a dismiss() function if you call it in this package it will go back to mirror display mode Have a look at my forked repo pull request you'll see https://github.com/hongquang198/presentation-displays/pull/1/files
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: