diff options
-rw-r--r-- | .gitignore | 9 | ||||
-rw-r--r-- | Sources/SwiftLVGL/Core/LVGLObject.swift | 8 | ||||
-rw-r--r-- | Sources/SwiftLVGL/Core/LVGLObjectProtocol.swift | 8 | ||||
-rw-r--r-- | Sources/SwiftLVGL/Enums/Color.swift | 8 | ||||
-rw-r--r-- | Sources/SwiftLVGL/Enums/LVAlignment.swift | 8 | ||||
-rw-r--r-- | Sources/SwiftLVGL/Enums/LVEventCode.swift | 8 | ||||
-rw-r--r-- | Sources/SwiftLVGL/Enums/LVGLDimension.swift | 8 | ||||
-rw-r--r-- | Sources/SwiftLVGL/Utilities/CallbackStore.swift | 8 | ||||
-rw-r--r-- | Sources/SwiftLVGL/Widgets/LVGLButton.swift | 8 | ||||
-rw-r--r-- | Sources/SwiftLVGL/Widgets/LVGLLabel.swift | 8 | ||||
-rw-r--r-- | Sources/SwiftLVGL/Widgets/LVGLSlider.swift | 8 | ||||
-rw-r--r-- | Sources/SwiftLVGL/Widgets/LVGLSpinner.swift | 8 | ||||
-rw-r--r-- | Sources/SwiftLVGL/Widgets/LVGLSwitch.swift | 8 |
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 |