import React, { Component } from 'react'; import { StyleSheet, Text, View } from 'react-native'; import {RichTextEditor, RichTextToolbar} from 'react-native-ZSSRichTextEditor' import KeyboardSpacer from 'react-native-keyboard-spacer'; export default class RichTextExample extends Component { constructor(props) { super(props); this.getHTML = this.getHTML.bind(this); } render() { return ( this.richtext = r} style={styles.richText} initialHTML={'Hello World

this is a new paragraph

this is another new paragraph

'} /> this.richtext} />
); } async getHTML() { const html = await this.richtext.getHtml(); } componentDidMount() { setTimeout(()=>{ this.getHTML(); }, 3000); } } const styles = StyleSheet.create({ container: { flex: 1, flexDirection: 'column', backgroundColor: '#F5FCFF', paddingTop: 40 }, richText: { alignItems:'center', justifyContent: 'center', backgroundColor: 'transparent', }, });