-
Notifications
You must be signed in to change notification settings - Fork 0
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
UI Fixes #795
base: sprint
Are you sure you want to change the base?
UI Fixes #795
Conversation
akshay8551
commented
Jan 24, 2025
- Invalid Bitcoin address error on scanning a receive invoice #755
- UI issue in the app #773
- Wallet Backup text changes #701
- We need to show Ticker in Coins detail screen #713
- View unspent UTXOs needs to be improved #694
- Learn more content for all wallet modes #678
<ScreenContainer> | ||
<AppHeader title={onBoarding.mainnetAndLightning} /> | ||
<ScrollView style={styles.wrapper}> | ||
<View> |
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.
is View required here?
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.
Other parts of the component structure use a to wrap content, and I’d like to maintain a consistent layout pattern. Even though the current styling is minimal, the ensures we can easily isolate styles or behaviors specific to this block in the future.
onPressSend={onPressSend} | ||
onPressRecieve={onPressRecieve} | ||
onPressBuy={onPressBuy} | ||
sendCtaWidth={wp(150)} |
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.
how this 150 is decided?
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.
The width of 150 was chosen to provide better spacing and ensure the buttons are easy to tap, while still being responsive with wp(). It ensures consistency across devices, even though the XD design suggests 140.
…nto reusable component
…d also added props type