Skip to content
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

Fix styling in QrCode #5483

Merged
merged 1 commit into from
Mar 5, 2025
Merged

Fix styling in QrCode #5483

merged 1 commit into from
Mar 5, 2025

Conversation

Jon-edge
Copy link
Collaborator

@Jon-edge Jon-edge commented Mar 1, 2025

image

  • Removed existing styling hack for the QR code itself, which then fixes the crypto icon positioning
  • Changed to a dynamically calculated icon size to retain size ratios across device sizes

CHANGELOG

Does this branch warrant an entry to the CHANGELOG?

  • Yes
  • No

Dependencies

none

Requirements

If you have made any visual changes to the GUI. Make sure you have:

  • Tested on iOS device
  • Tested on Android device
  • Tested on small-screen device (iPod Touch)
  • Tested on large-screen device (tablet)

@Jon-edge Jon-edge force-pushed the jon/fix/qr-modal-icon branch 2 times, most recently from 696d9ea to 3392fd7 Compare March 3, 2025 00:01
Copy link
Contributor

@swansontec swansontec left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR is quite good, thanks. I do have an optional suggestion.

justifyContent: 'center',
left: '50%',
top: '50%',
transform: [{ translateX: -iconContainerSize / 2 }, { translateY: -iconContainerSize / 2 }]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Optional: The transform may not be the most efficient option. You could also do it this way:

marginLeft: -iconContainerSize / 2,
marginTop: -iconContainerSize / 2

This will move the container up & to the left by half it's width, allowing left: '50%' and top: '50%' to correctly center it. It's very similar to the transform you have, but it happens at the layout stage instead of the rendering phase, which is generally perferable.

@Jon-edge Jon-edge force-pushed the jon/fix/qr-modal-icon branch from 3392fd7 to 8064f5b Compare March 5, 2025 02:48
- Removed existing styling hack for the QR code itself, which then fixes the crypto icon positioning
- Changed to a dynamically calculated icon size to retain size ratios across device sizes
@Jon-edge Jon-edge force-pushed the jon/fix/qr-modal-icon branch from 8064f5b to 0913d52 Compare March 5, 2025 03:33
@Jon-edge Jon-edge merged commit 362ea68 into develop Mar 5, 2025
1 of 2 checks passed
@Jon-edge Jon-edge deleted the jon/fix/qr-modal-icon branch March 5, 2025 03:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants