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
architecture-samples/app/src/main/java/com/example/android/architecture/blueprints/todoapp/tasks/TasksScreen.kt
Lines 121 to 128 in 03d9af0
architecture-samples/app/src/main/java/com/example/android/architecture/blueprints/todoapp/TodoNavGraph.kt
Lines 96 to 100 in 03d9af0
Line 110 in 03d9af0
architecture-samples/app/src/main/java/com/example/android/architecture/blueprints/todoapp/taskdetail/TaskDetailScreen.kt
Lines 66 to 68 in 03d9af0
USER_MESSAGE_ARG
The text was updated successfully, but these errors were encountered:
override fun onDestroyView() { super.onDestroyView() // Dismiss the Snackbar if it's currently shown snackbar?.dismiss() }
Sorry, something went wrong.
No branches or pull requests
architecture-samples/app/src/main/java/com/example/android/architecture/blueprints/todoapp/tasks/TasksScreen.kt
Lines 121 to 128 in 03d9af0
This part of code being legitimately trigger by
architecture-samples/app/src/main/java/com/example/android/architecture/blueprints/todoapp/TodoNavGraph.kt
Lines 96 to 100 in 03d9af0
architecture-samples/app/src/main/java/com/example/android/architecture/blueprints/todoapp/TodoNavGraph.kt
Line 110 in 03d9af0
But after you can go to task details again and click go back arrow in top bar.
architecture-samples/app/src/main/java/com/example/android/architecture/blueprints/todoapp/taskdetail/TaskDetailScreen.kt
Lines 66 to 68 in 03d9af0
Last snackbar message will be shown again. But this time, in my opinion, because there is copy of route with
USER_MESSAGE_ARG
in backstack.How this can be fixed or bypassed?
The text was updated successfully, but these errors were encountered: