imnapo / react-native-cn-quill

Quill rich-text editor for react-native
MIT License
190 stars 75 forks source link

Toolbar Disappeared for long text #45

Open arka422 opened 3 years ago

arka422 commented 3 years ago

I am using native toolbar, but when I put long text toolbar disappeared. If I remove the text it will not come again. <QuillEditor ref={this._editor} quill={{ placeholder: 'this is placeholder', modules: { toolbar: true }, theme: 'snow', }} import3rdParties="cdn" initialHtml="Quill Editor for react-native" />

surendrayalakala commented 2 years ago

@arka422 Same issue for me too.

I Have observed one more thing. if I am using QuillToolbar from this library to show toolbar separately it is working fine in debug mode but in Release mode app is getting crashed.

nithinyell commented 2 years ago

@imnapo Noted same with me

rohit20001221 commented 1 year ago

<RNQuillEditor ref={editorRef.mobile} initialHtml="" quill={{ modules: { ...TOOLBAR_OPTIONS, }, placeholder: '', theme: 'snow', }} webview={{ scrollEnabled: true, // enable scrolling in the web view injectedJavaScript: var style = document.createElement('style'); style.innerHTML = '.ql-toolbar { position: absolute; bottom: 0; width: 100%; background: white !important; z-index: 2 }'; document.head.appendChild(style); , }} />