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
* Updated read me with what's coming next (#76)
* updated read me and index
* updated list format
* updated upcoming feature list
* updated sample screen shots path
* bump version 1.1.1
Copy file name to clipboardExpand all lines: README.md
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,19 @@ The editor offers the following <b>options</b>:
24
24
-[x] Font family
25
25
-[x] Background color
26
26
-[x] Export with .txt, .rtf, .pdf, .json
27
-
-[x] Link
27
+
-[ ] Link
28
+
-[ ] Image Attachment
29
+
-[ ] Undo/Redo
30
+
31
+
## What’s Coming Next for RichEditorSwiftUI?🚀
32
+
33
+
We’re thrilled about the future of **RichEditorSwiftUI!** 🎉 Check out the exciting features currently in development:
34
+
35
+
-**Link Support:** Easily add hyperlinks to your rich text content.
36
+
-**Image Drop:** Drag and drop images directly into your editor for seamless integration.
37
+
-**Undo & Redo:** Effortlessly step forward or backward in your edits for greater control.
38
+
39
+
Thank you for your support and feedback—it fuels our journey. Stay tuned for these enhancements and more! 🙌
28
40
29
41
## Screenshots
30
42
@@ -98,7 +110,7 @@ dependencies: [
98
110
[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:
[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