Open
Conversation
Replace BottomSheet with stack header + full-screen layout aligned with AddressList. Remove sheet gesture scroll wiring and transparent modal presentation. Made-with: Cursor
Contributor
🔍 Smart E2E Test Selection⏭️ Smart E2E selection skipped - draft PR All E2E tests pre-selected. |
Contributor
|
✅ E2E Fixture Validation — Schema is up to date |
|
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.


Description
The multichain private key list previously used a
BottomSheetand transparent modal presentation. It now uses the same full-screen pattern as Address List:HeaderCompactStandardviauseLayoutEffect/navigation.setOptions, a flex root, and slide-in card options on the parent stack screen.Cancel uses
navigation.goBack()instead of closing a sheet. BottomSheet-specific code (gesture scroll ref context, RNGHScrollViewwrapper for FlashList,panGestureHandlerProps) was removed.Changelog
CHANGELOG entry: Updated multichain private key list to open as a full screen instead of a bottom sheet
Related issues
Fixes:
Manual testing steps
Screenshots/Recordings
Before
N/A
After
Screen.Recording.2026-04-10.at.9.57.29.PM.mov
Pre-merge author checklist
Pre-merge reviewer checklist
Note
Medium Risk
Changes navigation/presentation for the private key export flow, which is security-sensitive UX, and could impact back navigation/animations across platforms. No changes to key export/verification logic, so risk is mainly in routing and layout behavior.
Overview
Updates the multichain private key list flow to open as a full-screen card instead of a bottom sheet/transparent modal.
The
PrivateKeyListview now configures a standard header vianavigation.setOptions(including a dedicated back button testID) and usesnavigation.goBack()for cancel/back behavior, removing all BottomSheet/gesture-scroll plumbing.The parent navigator route for
Routes.MULTICHAIN_ACCOUNTS.PRIVATE_KEY_LISTis updated to use an explicit slide-in card animation and non-transparent background, matching the full-screen presentation.Reviewed by Cursor Bugbot for commit 4d724e6. Bugbot is set up for automated code reviews on this repo. Configure here.