react-native-draftjs-renderer-v16

1.1.3 • Public • Published

React Native Draft.js Render

React version v16 A React Native render for Draft.js model and works great with react-draft-wysiwyg.

Getting Started

Install React Native Draft.js Render on your React Native project, using NPM or Yarn:

npm i -S react-native-draftjs-renderer-v16
# or... 
yarn add react-native-draftjs-renderer-v16

Using

Just import and insert your Draft.js model on RNDraftJSRender:

import React from 'react';
import {
  AppRegistry,
} from 'react-native';
 
import RNDraftJSRender from 'react-native-draftjs-renderer-v16';
import contentState from 'DraftJs/contentState';
 
const MyApp = () => (
  <RNDraftJSRender
    contentState={contentState}
  />
);
 
AppRegistry.registerComponent('MyApp', () => MyApp);

TODO:

  • [Android] Justify text content support.

UPDATE:

1.1.1

  • Minor style change.

1.1.0

  • Remove dynamic Image height support, which will cause image blink.

1.0.1

  • Fix the image auto height crop problem.
  • Fix fontSize can not be over 14 bug.
  • Increase the Text padding size to 2.
  • Add dynamic Image height support.

Package Sidebar

Install

npm i react-native-draftjs-renderer-v16

Weekly Downloads

1

Version

1.1.3

License

MIT

Last publish

Collaborators

  • topdev