We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2660da commit c314a7bCopy full SHA for c314a7b
README.md
@@ -59,6 +59,7 @@ RNDraftJSRender comes with default styles, but you can use your own:
59
import React from 'react';
60
import {
61
AppRegistry,
62
+ ScrollView,
63
StyleSheet,
64
} from 'react-native';
65
@@ -79,7 +80,7 @@ const styles = StyleSheet.flatten({
79
80
const MyApp = () => {
81
const blocks = getRNDraftJSBlocks({ contentState, customStyles: styles });
82
return (
- <View style={{ flex: 1 }}>{blocks}</View>
83
+ <ScrollView style={{ flex: 1 }}>{blocks}</ScrollView>
84
);
85
};
86
0 commit comments