react-native-markdown-renderer icon indicating copy to clipboard operation
react-native-markdown-renderer copied to clipboard

Support for TextInput

Open ollyde opened this issue 6 years ago • 1 comments
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>
screenshot 2018-12-06 at 20 02 29

ollyde avatar Dec 06 '18 19:12 ollyde

Any change on this? Sounds really exciting.

zaptrem avatar Feb 27 '22 22:02 zaptrem