feat: coin control row tap-to-toggle and per-address options menu - #1378
Draft
sneurlax wants to merge 2 commits into
Draft
feat: coin control row tap-to-toggle and per-address options menu#1378sneurlax wants to merge 2 commits into
sneurlax wants to merge 2 commits into
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## staging #1378 +/- ##
========================================
Coverage 4.84% 4.84%
========================================
Files 1092 1093 +1
Lines 109141 109139 -2
========================================
Hits 5283 5283
+ Misses 103858 103856 -2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Member
Author
|
Converting to draft because I have too many open PRs ready--will take another review pass over this before re-readying it |
sneurlax
marked this pull request as draft
August 20, 2026 18:57
These three files predate the current formatter, so any change to them fails the repository's CI format gate. Reformat them on their own so the change that follows reads as a behaviour diff.
Coin control rows behaved like "open details" buttons: tapping anywhere on a card navigated away, and selection was only reachable through the small status circle. Tapping a row now toggles its selection on both mobile and desktop, and a trailing options button takes over navigation to the output details. SelectableUtxoSurface is the shared tap target; coin_control_rules.dart holds the filter and selection predicates the mobile view uses across its flat, search and grouped-by-address lists. The grouped query now honours the Available/Frozen filter instead of always querying every output, so a frozen output selected in grouped mode can be unfrozen from there.
sneurlax
force-pushed
the
feat/406-coin-control-improvements
branch
from
August 25, 2026 00:16
c21e68e to
56f1a67
Compare
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.
Tapping an address/output row now toggles its selection instead of opening the details view. A vertical ellipsis options button is added to the right of each row to reach the address options. Keeps the filtering, WillPopScope migration, and the UTXOConfirmedStatus deduplication from the prior work.
closes #406