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 4d0fb20 commit b1db131Copy full SHA for b1db131
Sources/ScreenData/Screens/SomeScreen.swift
@@ -2,7 +2,6 @@ public struct SomeScreen: Codable, Hashable {
2
public var id: String?
3
4
public var title: String
5
- public var subtitle: String?
6
7
public var backgroundColor: SomeColor
8
@@ -13,15 +12,13 @@ public struct SomeScreen: Codable, Hashable {
13
12
public init(
14
id: String? = nil,
15
title: String,
16
- subtitle: String?,
17
backgroundColor: SomeColor,
18
headerView: SomeView? = nil,
19
someView: SomeView,
20
footerView: SomeView? = nil
21
) {
22
self.id = id
23
self.title = title
24
- self.subtitle = subtitle
25
self.backgroundColor = backgroundColor
26
self.headerView = headerView
27
self.someView = someView
0 commit comments