Skip to content

Instantly share code, notes, and snippets.

@kirti-swiggy
Created December 5, 2023 14:12
Show Gist options
  • Save kirti-swiggy/115057c78eef9f306814e01e4bb303ae to your computer and use it in GitHub Desktop.
Save kirti-swiggy/115057c78eef9f306814e01e4bb303ae to your computer and use it in GitHub Desktop.
Code snippet for new SwiftUI view
<?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 &lt;#ViewName#&gt;: 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>
@kirti-swiggy
Copy link
Author

kirti-swiggy commented Dec 5, 2023

How to use

  • Go to your Xcode user's code snippets directory. Create one if it doesn't exist. open ~/Library/Developer/Xcode/UserData/CodeSnippets
  • Create a file with .codesnippet extension inside the above directory. Paste the above snippet in it.
  • Restart Xcode.
  • Enjoy 🙌

Once you type "new" (or even "ne") in the Xcode editor, the snippet should start showing up in autocomplete.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment