1.0.9 • Published 3 years ago

react-native-ckeditor5 v1.0.9

Weekly downloads
2
License
ISC
Repository
github
Last release
3 years ago

react-native-ckeditor5

React Native CKEditor5 component wrapper

Installation

yarn add react-native-ckeditor5

or

npm install --save react-native-ckeditor5

and then

import CKEditor5 from 'react-native-ckeditor5';

Usage

Creating a CKEditor5 editor:

const colors = {
  backgroundColor: '{your color code here}',
  offContentBackgroundColor: '{your secondary color code here}',
  color: '{font color code here}',
  bg5: '{your toolbar button active and hover color}'
}
     <CKEditor5
        initialData={inputValue}
        onChange={value => onTextChange(value)}
        editorConfig={{ toolbar: ['bold', 'italic', 'underline', 'bulletedList', 'numberedList', '|', 'undo', 'redo'] }}
        onFocus={() => {}}
        onBlur={() => {}}
        fontFamily={device.isIOS ? "-apple-system, 'Helvetica Neue', 'Lucida Grande'" : "'Roboto', sans-serif"}
        style={{ backgroundColor: 'transparent' }}
        height={utils.scaleByVertical(685)}
        colors={colors}
        toolbarBorderSize="0px"
        editorFocusBorderSize="0px"
        placeHolderText="Enter text here..."
      />
1.0.9

3 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago