We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 010a401 commit 589f33aCopy full SHA for 589f33a
WooCommerce/Classes/ViewModels/Order Details/OrderDetailsShippingAddressMapView.swift
@@ -36,9 +36,14 @@ struct OrderDetailsShippingAddressMapView: View {
36
RoundedRectangle(cornerRadius: Layout.cornerRadius)
37
.fill(Color.gray.opacity(0.2))
38
.overlay(
39
- Image(systemName: "map")
40
- .foregroundColor(.gray)
41
- .font(.title2)
+ VStack(spacing: 8) {
+ Image(systemName: "map")
+ .foregroundColor(.gray)
42
+ .font(.title2)
43
+ Text(Localization.tapToOpenInMaps)
44
+ .font(.caption2)
45
+ .foregroundColor(.secondary)
46
+ }
47
)
48
.contentShape(Rectangle())
49
.onTapGesture {
0 commit comments