-
Notifications
You must be signed in to change notification settings - Fork 173
Description
Describe your issue
When the application is launched from the background via an Android Home Screen Widget or Quick Action intent, GetX state management encounters two severe routing and context synchronization bugs:
-
The Widget Controller Cache Loop: Tapping "Task 1" on a widget correctly loads the Detail Route and instantiates a
DetailRouteControllerfor Task 1. However, if the app is backgrounded and the user taps a widget for "Task 3", GetX recognizes thatDETAIL_ROUTEis already active in memory. Instead of routing the new UUID, GetX lazily reuses the cachedDetailRouteController, keeping "Task 1" permanently stuck on screen for all subsequent widget taps. -
The "Black Screen" Context Void: The Floating Action Button natively launched
showModalBottomSheet. If a user tapped a "Quick Action" or "Widget Add Task" intent while the app was backgrounded with a native sheet open, GetX was unable to detect the native sheet viaGet.isBottomSheetOpen. GetX stacked the new intent sheet on top. Upon saving, the system popped the GetX sheet, stranding the user inside an orphaned/black void natively.
Steps to reproduce
Widget Caching Loop:
- Tap Task 1 from an Android Widget.
- Press the Android Home button to background the app.
- Tap Task 3 from an Android Widget.
Result: The app incorrectly displays Task 1.
Black Screen Void:
- Tap the in-app
+FAB to open the Add Task modal. - Press the Android Home button to background the app.
- Long-press the App Icon and trigger the "Add Task" Quick Action intent.
- Fill out the task details and hit Save.
Result: The UI dismisses the active modal but reveals a broken/black overlay instead of the Home screen.
What was the expected result?
The app should cleanly unmount stale overlays (like the native FAB bottom sheet) and explicitly purge legacy controllers (DetailRouteController) from memory before injecting new routing intents from a warm start. The new task should load accurately, and closing a bottom sheet should safely return the user to the underlying UI without crashing into a black screen.
Put here any screenshots or videos (optional)
issue.mp4
How can we contact you (optional)
No response
Would you like to work on this issue?
Yes
By submitting this issue, I have confirmed that:
- I have starred the repo ⭐ and watched 👀 it on GitHub and followed the contribution guidelines.