Skip to content

Commit a7e063b

Browse files
authored
Merge pull request #6 from ServerDriven/develop
Develop
2 parents db89a20 + 2c67bc3 commit a7e063b

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed
Binary file not shown.

Sources/ScreenData/Views/SomeButton.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public struct SomeButton: Codable, Hashable {
2121
) {
2222
self.id = id
2323
self.title = title
24+
self.actionID = actionID
2425
self.destination = destination
2526
self.style = style
2627
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
public struct SomeSpacer: Codable, Hashable {
2+
public var size: Int
23

34
public var type: ViewType {
45
.spacer
56
}
67

8+
public init(size: Int) {
9+
self.size = size
10+
}
711
}
12+

0 commit comments

Comments
 (0)