Reputation: 1735
Has anyone tried to port DraftJs with React Native. Any ideas how to do it?
https://github.com/facebook/draft-js/issues/138
Upvotes: 7
Views: 2768
Reputation: 3311
As the link showing, It's a hard work to implement a complete new native version editor with current draft model. Some hard points are I can see:
editable content
did much help for it in Draft. editable content
is already supported by browsers.After all, Draft is announced as a Editor Framework
, not a ready to use editor. It's OK to limit your editor functions and have a native version, but I'd rather to embed a WebView to have a really powerful H5 Editor.
Upvotes: 4