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
When the flutter application signals to pop the whole application, we should probably iconify or minimize the application..
SystemNavigator.pop method on flutter/plaform channel: https://github.com/flutter/engine/blob/master/shell/platform/android/io/flutter/embedding/engine/systemchannels/PlatformChannel.java#L113
Should be routed to GLFW hide/show or iconify: https://godoc.org/github.com/go-gl/glfw/v3.2/glfw#Window.Hide https://godoc.org/github.com/go-gl/glfw/v3.2/glfw#Window.Show https://godoc.org/github.com/go-gl/glfw/v3.2/glfw#Window.Iconify
And
Callback on focus or iconify changes: https://godoc.org/github.com/go-gl/glfw/v3.2/glfw#Window.SetFocusCallback https://godoc.org/github.com/go-gl/glfw/v3.2/glfw#Window.SetIconifyCallback
Should be routed to LifecycleChannel: https://github.com/flutter/engine/blob/master/shell/platform/android/io/flutter/embedding/engine/systemchannels/LifecycleChannel.java
The text was updated successfully, but these errors were encountered:
This could be part of a bigger effort to separate GLFW as a renderer, which would then implement platform channels.
Sorry, something went wrong.
Starting work on this now.
GeertJohan
Successfully merging a pull request may close this issue.
When the flutter application signals to pop the whole application, we should probably iconify or minimize the application..
SystemNavigator.pop method on flutter/plaform channel:
https://github.com/flutter/engine/blob/master/shell/platform/android/io/flutter/embedding/engine/systemchannels/PlatformChannel.java#L113
Should be routed to GLFW hide/show or iconify:
https://godoc.org/github.com/go-gl/glfw/v3.2/glfw#Window.Hide
https://godoc.org/github.com/go-gl/glfw/v3.2/glfw#Window.Show
https://godoc.org/github.com/go-gl/glfw/v3.2/glfw#Window.Iconify
And
Callback on focus or iconify changes:
https://godoc.org/github.com/go-gl/glfw/v3.2/glfw#Window.SetFocusCallback
https://godoc.org/github.com/go-gl/glfw/v3.2/glfw#Window.SetIconifyCallback
Should be routed to LifecycleChannel:
https://github.com/flutter/engine/blob/master/shell/platform/android/io/flutter/embedding/engine/systemchannels/LifecycleChannel.java
The text was updated successfully, but these errors were encountered: