aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2024-08-09 14:51:52 -0600
committerNavan Chauhan <navanchauhan@gmail.com>2024-08-09 14:51:52 -0600
commitfa3bba6792cdef4a11554d9538aa39e7fdb9b04c (patch)
tree5cc214cb5c175387a709dba83a52a3046607bed6
parentb8865a037c96671e426d6ac9f693ff351f412d90 (diff)
ignore combined swift file
-rw-r--r--.gitignore9
-rw-r--r--Sources/SwiftLVGL/Core/LVGLObject.swift8
-rw-r--r--Sources/SwiftLVGL/Core/LVGLObjectProtocol.swift8
-rw-r--r--Sources/SwiftLVGL/Enums/Color.swift8
-rw-r--r--Sources/SwiftLVGL/Enums/LVAlignment.swift8
-rw-r--r--Sources/SwiftLVGL/Enums/LVEventCode.swift8
-rw-r--r--Sources/SwiftLVGL/Enums/LVGLDimension.swift8
-rw-r--r--Sources/SwiftLVGL/Utilities/CallbackStore.swift8
-rw-r--r--Sources/SwiftLVGL/Widgets/LVGLButton.swift8
-rw-r--r--Sources/SwiftLVGL/Widgets/LVGLLabel.swift8
-rw-r--r--Sources/SwiftLVGL/Widgets/LVGLSlider.swift8
-rw-r--r--Sources/SwiftLVGL/Widgets/LVGLSpinner.swift8
-rw-r--r--Sources/SwiftLVGL/Widgets/LVGLSwitch.swift8
13 files changed, 105 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b27cd5d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,9 @@
+.DS_Store
+/.build
+/Packages
+xcuserdata/
+DerivedData/
+.swiftpm/configuration/registries.json
+.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
+.netrc
+SwiftyLVGL.swift
diff --git a/Sources/SwiftLVGL/Core/LVGLObject.swift b/Sources/SwiftLVGL/Core/LVGLObject.swift
new file mode 100644
index 0000000..a806437
--- /dev/null
+++ b/Sources/SwiftLVGL/Core/LVGLObject.swift
@@ -0,0 +1,8 @@
+//
+// File.swift
+//
+//
+// Created by Navan Chauhan on 8/9/24.
+//
+
+import Foundation
diff --git a/Sources/SwiftLVGL/Core/LVGLObjectProtocol.swift b/Sources/SwiftLVGL/Core/LVGLObjectProtocol.swift
new file mode 100644
index 0000000..a806437
--- /dev/null
+++ b/Sources/SwiftLVGL/Core/LVGLObjectProtocol.swift
@@ -0,0 +1,8 @@
+//
+// File.swift
+//
+//
+// Created by Navan Chauhan on 8/9/24.
+//
+
+import Foundation
diff --git a/Sources/SwiftLVGL/Enums/Color.swift b/Sources/SwiftLVGL/Enums/Color.swift
new file mode 100644
index 0000000..a806437
--- /dev/null
+++ b/Sources/SwiftLVGL/Enums/Color.swift
@@ -0,0 +1,8 @@
+//
+// File.swift
+//
+//
+// Created by Navan Chauhan on 8/9/24.
+//
+
+import Foundation
diff --git a/Sources/SwiftLVGL/Enums/LVAlignment.swift b/Sources/SwiftLVGL/Enums/LVAlignment.swift
new file mode 100644
index 0000000..a806437
--- /dev/null
+++ b/Sources/SwiftLVGL/Enums/LVAlignment.swift
@@ -0,0 +1,8 @@
+//
+// File.swift
+//
+//
+// Created by Navan Chauhan on 8/9/24.
+//
+
+import Foundation
diff --git a/Sources/SwiftLVGL/Enums/LVEventCode.swift b/Sources/SwiftLVGL/Enums/LVEventCode.swift
new file mode 100644
index 0000000..a806437
--- /dev/null
+++ b/Sources/SwiftLVGL/Enums/LVEventCode.swift
@@ -0,0 +1,8 @@
+//
+// File.swift
+//
+//
+// Created by Navan Chauhan on 8/9/24.
+//
+
+import Foundation
diff --git a/Sources/SwiftLVGL/Enums/LVGLDimension.swift b/Sources/SwiftLVGL/Enums/LVGLDimension.swift
new file mode 100644
index 0000000..a806437
--- /dev/null
+++ b/Sources/SwiftLVGL/Enums/LVGLDimension.swift
@@ -0,0 +1,8 @@
+//
+// File.swift
+//
+//
+// Created by Navan Chauhan on 8/9/24.
+//
+
+import Foundation
diff --git a/Sources/SwiftLVGL/Utilities/CallbackStore.swift b/Sources/SwiftLVGL/Utilities/CallbackStore.swift
new file mode 100644
index 0000000..a806437
--- /dev/null
+++ b/Sources/SwiftLVGL/Utilities/CallbackStore.swift
@@ -0,0 +1,8 @@
+//
+// File.swift
+//
+//
+// Created by Navan Chauhan on 8/9/24.
+//
+
+import Foundation
diff --git a/Sources/SwiftLVGL/Widgets/LVGLButton.swift b/Sources/SwiftLVGL/Widgets/LVGLButton.swift
new file mode 100644
index 0000000..a806437
--- /dev/null
+++ b/Sources/SwiftLVGL/Widgets/LVGLButton.swift
@@ -0,0 +1,8 @@
+//
+// File.swift
+//
+//
+// Created by Navan Chauhan on 8/9/24.
+//
+
+import Foundation
diff --git a/Sources/SwiftLVGL/Widgets/LVGLLabel.swift b/Sources/SwiftLVGL/Widgets/LVGLLabel.swift
new file mode 100644
index 0000000..a806437
--- /dev/null
+++ b/Sources/SwiftLVGL/Widgets/LVGLLabel.swift
@@ -0,0 +1,8 @@
+//
+// File.swift
+//
+//
+// Created by Navan Chauhan on 8/9/24.
+//
+
+import Foundation
diff --git a/Sources/SwiftLVGL/Widgets/LVGLSlider.swift b/Sources/SwiftLVGL/Widgets/LVGLSlider.swift
new file mode 100644
index 0000000..a806437
--- /dev/null
+++ b/Sources/SwiftLVGL/Widgets/LVGLSlider.swift
@@ -0,0 +1,8 @@
+//
+// File.swift
+//
+//
+// Created by Navan Chauhan on 8/9/24.
+//
+
+import Foundation
diff --git a/Sources/SwiftLVGL/Widgets/LVGLSpinner.swift b/Sources/SwiftLVGL/Widgets/LVGLSpinner.swift
new file mode 100644
index 0000000..a806437
--- /dev/null
+++ b/Sources/SwiftLVGL/Widgets/LVGLSpinner.swift
@@ -0,0 +1,8 @@
+//
+// File.swift
+//
+//
+// Created by Navan Chauhan on 8/9/24.
+//
+
+import Foundation
diff --git a/Sources/SwiftLVGL/Widgets/LVGLSwitch.swift b/Sources/SwiftLVGL/Widgets/LVGLSwitch.swift
new file mode 100644
index 0000000..a806437
--- /dev/null
+++ b/Sources/SwiftLVGL/Widgets/LVGLSwitch.swift
@@ -0,0 +1,8 @@
+//
+// File.swift
+//
+//
+// Created by Navan Chauhan on 8/9/24.
+//
+
+import Foundation