-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CP-9935: Portfolio Tab Navigation #2279
Conversation
<AssetsScreen onScroll={onScroll} /> | ||
</Tabs.Tab> | ||
<Tabs.Tab name="Collectibles"> | ||
<CollectiblesScreen onScroll={onScroll} /> | ||
</Tabs.Tab> | ||
<Tabs.Tab name="DeFi"> | ||
<DeFiScreen onScroll={onScroll} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could we create a wrapper component that contains the onScroll logic so that actual screens (AssetsScreen,...) don't need to include that logic?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good point. fixed. d2b3a00
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice job!!
Description
Ticket: CP-9935
Screenshots/Videos
Simulator.Screen.Recording.-.iPhone.16.Pro.Max.-.2025-02-17.at.14.49.13.mp4
Screen.Recording.2025-02-17.at.2.52.10.PM.mov
Notes
react-native-pager-view
, which does not allow content to overflow. As a result,. the blur effect cannot be applied to the header and bottom tab bar. We'll address this in a separate ticket.