Created
December 5, 2023 14:12
-
-
Save kirti-swiggy/115057c78eef9f306814e01e4bb303ae to your computer and use it in GitHub Desktop.
Code snippet for new SwiftUI view
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>IDECodeSnippetCompletionPrefix</key> | |
<string>new</string> | |
<key>IDECodeSnippetCompletionScopes</key> | |
<array> | |
<string>TopLevel</string> | |
</array> | |
<key>IDECodeSnippetContents</key> | |
<string>import DLS | |
import SwiftUI | |
struct <#ViewName#>: View { | |
// MARK: Theme | |
@ObservedObject private var themeingObject: ThemeingObject | |
// MARK: Private properties | |
// MARK: body | |
var body: some View { | |
contentView | |
} | |
// MARK: Implementation | |
private var contentView: some View { | |
EmptyView() | |
} | |
} | |
// MARK: Constants | |
</string> | |
<key>IDECodeSnippetIdentifier</key> | |
<string>0955B364-66DF-4661-9CCB-412E7F1769BF</string> | |
<key>IDECodeSnippetLanguage</key> | |
<string>Xcode.SourceCodeLanguage.Swift</string> | |
<key>IDECodeSnippetSummary</key> | |
<string></string> | |
<key>IDECodeSnippetTitle</key> | |
<string>SwiftUI View</string> | |
<key>IDECodeSnippetUserSnippet</key> | |
<true/> | |
<key>IDECodeSnippetVersion</key> | |
<integer>2</integer> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to use
~/Library/Developer/Xcode/UserData/CodeSnippets
Once you type "new" (or even "ne") in the Xcode editor, the snippet should start showing up in autocomplete.