Add dynamic app shortcuts for top cards with overlay card view#76
Closed
Add dynamic app shortcuts for top cards with overlay card view#76
Conversation
Add ShortcutManager to manage top 4 cards as app shortcuts. Add CardShortcutActivity to display single card as overlay. Integrate biometric authentication in overlay activity. Update shortcuts automatically when cards or sort order changes. Co-authored-by: pawcoding <78467484+pawcoding@users.noreply.github.com>
Owner
|
Closing in favor of: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements fast access to frequently-used cards via Android app shortcuts. Long-pressing the launcher icon reveals up to 4 cards based on the current sort mode, tapping a shortcut displays the card in a translucent overlay activity.
Implementation
ShortcutManager - Manages dynamic shortcuts for top 4 cards
CardShortcutActivity - Translucent overlay for single-card display
ViewCardSheetcomposableIntegration - Added LaunchedEffect in CardListScreen
Files Changed
ShortcutManager.kt(new) - Shortcut management logicCardShortcutActivity.kt(new) - Overlay activityAndroidManifest.xml- Register CardShortcutActivity with translucent theme, singleInstance modeCardListScreen.kt- Reactive shortcut updatesOriginal prompt