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
Hi, If I add a Controller while app is paused, the lifecycle of the pushed Controller is in my opinion wrong / unexpected.
I add it via this, and hit home button before somethingAsync callback is called
Activity { fun onCreate() { somethingAsync { router.pushController(..) } } }
Observed lifecycle:
ctor onCreateView onDestroyView onAttach
I'd never expect attached controller to have null view. Is this by design?
The text was updated successfully, but these errors were encountered:
@ursusursus it works as expected for me.
onActivityPaused Controller1 onDetach onActivityStopped Controller1 onSaveInstanceState // Push Controller2 Controller2 onCreateView Controller2 onAttach (view != null) Controller1 onDestroyView
Sorry, something went wrong.
Well, it doesnt for me. Ill try to get a sample project
No branches or pull requests
Hi, If I add a Controller while app is paused, the lifecycle of the pushed Controller is in my opinion wrong / unexpected.
I add it via this, and hit home button before somethingAsync callback is called
Observed lifecycle:
I'd never expect attached controller to have null view. Is this by design?
The text was updated successfully, but these errors were encountered: