ADAM BLVCK
ADAM BLVCK
Import the following ~~~ import { EditorState, ContentState } from 'draft-js'; ~~~ After that, you can set the content in a constructor (or differently) by: ~~~ this.state = { editorState:...
Found a solution to problem specified above: Install ~~~ npm install --save draft-js-import-markdown ~~~ Then you can set the content state as such: ~~~ this.state = { editorState: EditorState.createWithContent(stateFromMarkdown("#markdowntitle")) };...
Somehow I can't believe this issue is lingering since 2017 (the non-autogrowth of TextEdit in Web), and somehow it's still not part of the core package. What needs to be...
I'm experiencing exactly the same error, now running on Expo SDK 46 (`[email protected]`)
Can confirm that EAS builds (development) don't connect to React Native Debugger, after following documentation, manual port selection in UI, and trying every sensible host/port combination by doing a cli...
I'm not sure if this belongs to this issue, but perhaps it's worth mentioning as it's related to TS errors. While trying to make run one of my react-native apps...
@RobinBobin Expo (using EAS workflow) actually works quite well with your lib! Sad to hear this, but I'll see how I'll manage this going forward.
I will add for context that on iOS devices this issue is non-existent and has been tested with files up to 500Mb+ in filesize.
Trying to perform a chunked read using `{position: xxx, length yyy}` parameters in `FileSystem. readAsStringAsync`, with chunks less than 1Mb, causes the same error. It seems that the function call...
> > Trying to perform a chunked read using `{position: xxx, length yyy}` parameters in `FileSystem. readAsStringAsync`, with chunks less than 1Mb, causes the same error. It seems that the...