react-native-markdown-renderer
react-native-markdown-renderer copied to clipboard
Support for TextInput
trafficstars
Need to be able to edit the content.
Should be an easy fix. Just replace <View/> with <Text/>. This will allow nested text input rendering across both platforms. (And most importantly React-native-web so a full cross platform MD editor)
<TextInput
multiline={true}
style={{ flex: 1, alignSelf: 'stretch' }}
onChange={(e) => this.onChange(e)}
>
<Markdown>{testMarkdown}</Markdown>
</TextInput>
Any change on this? Sounds really exciting.