Skip to content

Commit 9faae06

Browse files
committed
Add empty ScrollView to New Order screen
1 parent 90de306 commit 9faae06

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

WooCommerce/Classes/ViewRelated/Orders/Order Creation/NewOrder.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ import SwiftUI
22

33
struct NewOrder: View {
44
var body: some View {
5-
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
5+
ScrollView {
6+
EmptyView()
7+
}
8+
.background(Color(.listBackground))
9+
.ignoresSafeArea(.container, edges: [.horizontal, .bottom])
610
}
711
}
812

0 commit comments

Comments
 (0)