You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[CocoaPods][] is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate RichEditorSwiftUI into your Xcode project using CocoaPods, specify it in your Podfile:
33
90
34
91
target 'YourAppName' do
35
-
pod 'RichEditorSwiftUI', '~> 1.0.0'
92
+
pod 'RichEditorSwiftUI', '~> 1.1.0'
36
93
end
37
94
38
95
[CocoaPods]: https://cocoapods.org
@@ -42,21 +99,57 @@ dependencies: [
42
99
Add the dependency
43
100
44
101
```
45
-
import XYZRichEditor
102
+
import RichEditorSwiftUI
46
103
```
47
104
48
-
## How to use?
105
+
## How to use?
49
106
50
107
```
51
108
struct EditorView: View {
52
109
@ObservedObject var state: RichEditorState = .init(input: "Hello World")
RichEditorSwiftUI utilizes the latest Apple technologies and adheres to industry best practices. Below is the current tech stack used in the development process:
147
+
148
+
- MVVM Architecture
149
+
- SwiftUI
150
+
- Swift
151
+
- Xcode
152
+
60
153
# Demo
61
154
[Sample](https://github.com/canopas/rich-editor-swiftui/tree/main/RichEditorDemo) app demonstrates how simple the usage of the library actually is.
0 commit comments