Skip to content

Commit da42523

Browse files
committed
Add UICollectionViewCell snippet with FlexLayout and Pure
1 parent 72b7edd commit da42523

1 file changed

Lines changed: 84 additions & 0 deletions

File tree

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDECodeSnippetCompletionPrefix</key>
6+
<string></string>
7+
<key>IDECodeSnippetCompletionScopes</key>
8+
<array>
9+
<string>All</string>
10+
</array>
11+
<key>IDECodeSnippetContents</key>
12+
<string>import StyleShareReactive
13+
import StyleShareUI
14+
15+
public final class &lt;#Name#&gt;: BaseCollectionViewCell, ConfiguratorModule {
16+
17+
// MARK: Module
18+
19+
public struct Dependency {
20+
}
21+
22+
public struct Payload {
23+
public init () {
24+
}
25+
}
26+
27+
28+
// MARK: Constants
29+
30+
private enum Typo {
31+
}
32+
33+
34+
// MARK: Properties
35+
36+
private var dependency: Dependency?
37+
private var payload: Payload?
38+
39+
40+
// MARK: UI
41+
42+
43+
// MARK: Initializing
44+
45+
public override init(frame: CGRect) {
46+
super.init(frame: frame)
47+
}
48+
49+
public required init?(coder: NSCoder) {
50+
fatalError("init(coder:) has not been implemented")
51+
}
52+
53+
54+
// MARK: Configure
55+
56+
public func configure(dependency: Dependency, payload: Payload) {
57+
self.dependency = dependency
58+
self.payload = payload
59+
}
60+
61+
62+
// MARK: Layout
63+
64+
public override func defineFlexContainer() {
65+
}
66+
67+
public override func layoutFlexContainer() {
68+
}
69+
}
70+
</string>
71+
<key>IDECodeSnippetIdentifier</key>
72+
<string>E0373661-D9B3-4DE9-9925-EF0AE06332D6</string>
73+
<key>IDECodeSnippetLanguage</key>
74+
<string>Xcode.SourceCodeLanguage.Swift</string>
75+
<key>IDECodeSnippetSummary</key>
76+
<string></string>
77+
<key>IDECodeSnippetTitle</key>
78+
<string>StyleShare - UICollectionViewCell (FlexLayout, Pure)</string>
79+
<key>IDECodeSnippetUserSnippet</key>
80+
<true/>
81+
<key>IDECodeSnippetVersion</key>
82+
<integer>0</integer>
83+
</dict>
84+
</plist>

0 commit comments

Comments
 (0)