feat(wallet): dive into full paged activity history - #1225
Merged
Conversation
The wallet's recent-activity preview shows only a glimpse. Make its "Recent" header a tappable chevron row that pushes the full, unbounded, paged history. - New AppRoute.Sheets.ActivityHistory + entry. - ActivityHistoryScreen / ActivityHistoryViewModel live in :shared:transaction-history, next to the feed data they render. The VM exposes the coordinator's recentTransactions() paged feed (cachedIn), reusing the same ActivityFeedRow the preview uses — token/profile resolution stays cache-only and reactive. - Top edge fades via verticalScrollStateGradient as rows scroll up. - app module depends on :shared:transaction-history.
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.
Summary
The wallet's recent-activity preview shows only a glimpse (bounded to a few rows). This makes the "Recent" header a tappable chevron that dives into the full, unbounded, paged activity history.
AppRoute.Sheets.ActivityHistory, registered inAppScreenContent; pushed full-screen (nav bar hides, back returns to the wallet).ActivityHistoryScreen/ActivityHistoryViewModellive in:shared:transaction-history— next to the feed data they render, not in the balance feature. The VM exposes the coordinator'srecentTransactions()paged feed (cachedIn(viewModelScope)), reusing the sameActivityFeedRowthe wallet previews. Token/profile resolution stays cache-only and reactive (no per-item network churn) —recentTransactions()is the coordinator's purpose-built "full paged history" flow.title_activitystring); the top edge fades viaverticalScrollStateGradientas rows scroll up.:shared:transaction-history.Test Plan
:shared:transaction-history,:features:balance, and:apps:flipcash:appcompile; installed on device.