[Order form] Fix blurry image for scan product, and QR & TTP payment methods; update selected icon color in product selector #15465
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.
Closes: #15355
Parts of #15363
Description
This pull request includes changes to fix some blurry icons from converting
UIImage(systemName:)
to SwiftUI Image with scaled size. When a SwiftUI image is resizable, I think it's best to avoid using aUIImage
as the explained in this SO answer. It also makes a quick update on the product selector row's checkmark icon to be more readable in dark mode.Standardizing Icons:
WooCommerce/Classes/Extensions/UIImage+Woo.swift
: Removed the unusedbankIcon
static variable.WooCommerce/Classes/ViewRelated/Orders/Order Creation/OrderForm.swift
: Replaced.scanImage
with the system iconbarcode.viewfinder
in two locations. [1] [2]WooCommerce/Classes/ViewRelated/Orders/Order Creation/PaymentSection/GiftCardInputView.swift
: Replaced.scanImage
with the system iconbarcode.viewfinder
.Refactoring MethodRow Component:
WooCommerce/Classes/ViewRelated/Orders/Payment Methods/PaymentMethodsView.swift
: Replaced custom icons with system icons inMethodRow
for QR code & TTP rows, and refactoredMethodRow
to support bothUIImage
andImage
. [1] [2] [3] [4] [5]Miscellaneous:
WooCommerce/Classes/ViewRelated/Products/ProductSelector/ProductRow.swift
: Changed the color of theImage
foreground from.brand
to.accent
.Steps to reproduce
For easier testing in the payment methods view, feel free to return true for TTP in
PaymentMethodsView
L45.Testing information
Screenshots
RELEASE-NOTES.txt
if necessary.Reviewer (or Author, in the case of optional code reviews):
Please make sure these conditions are met before approving the PR, or request changes if the PR needs improvement: