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 0f523d5 commit ccac2eeCopy full SHA for ccac2ee
WooCommerce/Classes/POS/Presentation/PointOfSaleInformationModal.swift
@@ -40,7 +40,10 @@ struct PointOfSaleInformationModal<Content: View>: View {
40
content
41
}
42
.measureHeight { height in
43
- contentHeight = height
+ // Workaround for ScrollView not updating its height immediately on iOS 17
44
+ withAnimation(.easeIn(duration: 0)) {
45
+ contentHeight = height
46
+ }
47
48
49
.frame(maxHeight: contentHeight)
0 commit comments