Skip to content

Commit 99a7061

Browse files
committed
Added empty SimpleyPaymentsMethod view
1 parent 7cc6ca8 commit 99a7061

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import Foundation
2+
import SwiftUI
3+
4+
/// View to choose what payment method will be used with the simple payments order.
5+
///
6+
struct SimplePaymentsMethod: View {
7+
8+
var body: some View {
9+
Text("Payment method")
10+
}
11+
}

WooCommerce/WooCommerce.xcodeproj/project.pbxproj

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,7 @@
391391
2611EE59243A473300A74490 /* ProductCategoryListViewModelTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2611EE58243A473300A74490 /* ProductCategoryListViewModelTests.swift */; };
392392
2614EB1C24EB611200968D4B /* TopBannerViewTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2614EB1B24EB611200968D4B /* TopBannerViewTests.swift */; };
393393
2619FA2C25C897930006DAFF /* AddAttributeOptionsViewModelTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2619FA2B25C897930006DAFF /* AddAttributeOptionsViewModelTests.swift */; };
394+
261AA309275178FA009530FE /* SimplePaymentsMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = 261AA308275178FA009530FE /* SimplePaymentsMethod.swift */; };
394395
262A09812628A8F40033AD20 /* WooStyleModifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 262A09802628A8F40033AD20 /* WooStyleModifiers.swift */; };
395396
262A098B2628C51D0033AD20 /* OrderAddOnListViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 262A098A2628C51D0033AD20 /* OrderAddOnListViewModel.swift */; };
396397
262A0999262908A60033AD20 /* OrderAddOnListI1Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 262A0998262908A60033AD20 /* OrderAddOnListI1Tests.swift */; };
@@ -1879,6 +1880,7 @@
18791880
2611EE58243A473300A74490 /* ProductCategoryListViewModelTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductCategoryListViewModelTests.swift; sourceTree = "<group>"; };
18801881
2614EB1B24EB611200968D4B /* TopBannerViewTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopBannerViewTests.swift; sourceTree = "<group>"; };
18811882
2619FA2B25C897930006DAFF /* AddAttributeOptionsViewModelTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddAttributeOptionsViewModelTests.swift; sourceTree = "<group>"; };
1883+
261AA308275178FA009530FE /* SimplePaymentsMethod.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimplePaymentsMethod.swift; sourceTree = "<group>"; };
18821884
262A09802628A8F40033AD20 /* WooStyleModifiers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WooStyleModifiers.swift; sourceTree = "<group>"; };
18831885
262A098A2628C51D0033AD20 /* OrderAddOnListViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderAddOnListViewModel.swift; sourceTree = "<group>"; };
18841886
262A0998262908A60033AD20 /* OrderAddOnListI1Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderAddOnListI1Tests.swift; sourceTree = "<group>"; };
@@ -3948,6 +3950,14 @@
39483950
path = "Variations/Add Attributes";
39493951
sourceTree = "<group>";
39503952
};
3953+
261AA30A27517907009530FE /* Method */ = {
3954+
isa = PBXGroup;
3955+
children = (
3956+
261AA308275178FA009530FE /* SimplePaymentsMethod.swift */,
3957+
);
3958+
path = Method;
3959+
sourceTree = "<group>";
3960+
};
39513961
262A097F2628A8BF0033AD20 /* View Modifiers */ = {
39523962
isa = PBXGroup;
39533963
children = (
@@ -4042,6 +4052,7 @@
40424052
26100B1D2721BAD800473045 /* SimplePaymentsTopBannerFactory.swift */,
40434053
26B9875A273C6A520090E8CA /* Amount */,
40444054
26B9875B273C6A670090E8CA /* Summary */,
4055+
261AA30A27517907009530FE /* Method */,
40454056
);
40464057
path = "Simple Payments";
40474058
sourceTree = "<group>";
@@ -7853,6 +7864,7 @@
78537864
02F6800325807C9B00C3BAD2 /* ShippingLabelPaperSizeOptionListView.swift in Sources */,
78547865
02E8B17723E2C49000A43403 /* InProgressProductImageCollectionViewCell.swift in Sources */,
78557866
CE5F462C23AACBC4006B1A5C /* RefundDetailsResultController.swift in Sources */,
7867+
261AA309275178FA009530FE /* SimplePaymentsMethod.swift in Sources */,
78567868
0230535B2374FB6800487A64 /* AztecSourceCodeFormatBarCommand.swift in Sources */,
78577869
D41C9F2E26D9A0E900993558 /* WhatsNewViewModel.swift in Sources */,
78587870
02ECD1E424FF5E0B00735BE5 /* AddProductCoordinator.swift in Sources */,

0 commit comments

Comments
 (0)