App Performance: Enhancement - remove styled-components and optimize rendering performance - #2241
Open
gabrielbazan7 wants to merge 30 commits into
Open
gabrielbazan7 wants to merge 30 commits into
gabrielbazan7 wants to merge 30 commits into
Conversation
gabrielbazan7
force-pushed
the
ref/performance
branch
17 times, most recently
from
July 31, 2026 14:47
ef801ce to
c4464ce
Compare
gabrielbazan7
force-pushed
the
ref/performance
branch
4 times, most recently
from
August 18, 2026 13:14
ba4b023 to
bdb0ab1
Compare
gabrielbazan7
force-pushed
the
ref/performance
branch
2 times, most recently
from
August 26, 2026 19:06
d78fa7d to
a729af8
Compare
This was referenced Aug 27, 2026
…ists, and transaction flows
… repository safeguards
- ClearEncryptPassword: parse ScreenGutter ('12px') to a number
- InfoImageContainer: expand the margin shorthand instead of parseFloat
- CtaContainer overrides: reset paddingHorizontal that CSS shorthand used to clear
- OptionsSheet: restore option text spacing and chevron alignment
gabrielbazan7
force-pushed
the
ref/performance
branch
from
September 14, 2026 23:50
acc2460 to
b230a2d
Compare
gabrielbazan7
force-pushed
the
ref/performance
branch
from
September 16, 2026 13:48
a947902 to
9a3ed26
Compare
gabrielbazan7
force-pushed
the
ref/performance
branch
from
September 16, 2026 14:06
9a3ed26 to
5a6bae2
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.
Performance diagnostics (
PERF_DEBUG)All performance instrumentation is gated behind a single constant in
src/utils/performanceDebug.ts, off by default. Set it totrueand reload to enable it; logs go to the Metro console.[PERF-NAV]transitionDeltaMsis the animation alone,stateDeltaMsalso covers the work before it starts (forward navigations only)[PERF-SCREEN][PERF-REACT]actualMsagainstbaseMsto spot missing memoization[PERF-REDUX][PERF-PERSIST][PERF-NAV],[PERF-REDUX]and[PERF-PERSIST]work as soon as the flag is on.[PERF-SCREEN]needsuseScreenRenderPerformance(name)wired to the screen'sonLayout, and[PERF-REACT]needs the subtree wrapped in<PerformanceProfiler id="..." onRender={logReactProfiler}>— both are no-ops while the flag is off, so they're safe to leave in place.Keep the flag
falseon merge:performanceLogis a plainconsole.log, andperformanceDebug.spec.tsasserts the default so an accidental commit fails CI.