Open shivam0831 opened 3 years ago
@shivam0831 could you please specify your testing environment.
I am testing on android device.
@shivam0831 bro
by using QuillToolbar In android debug mode my android app does not crash but in Release mode app gets crashed. any help on this.
Thanks in advance
@shivam0831 bro
by using QuillToolbar In android debug mode my android app does not crash but in Release mode app gets crashed. any help on this.
Thanks in advance
Did you solve this crash?
QuillToolbar touch is not responsive. When I am trying to select an option from the toolbar sometimes it's not being selected and after clicking to x2 option the keyboard exit automatically. any solution regarding this?
I am using example code
import React from 'react'; import { SafeAreaView, StyleSheet, StatusBar } from 'react-native'; import QuillEditor, { QuillToolbar } from 'react-native-cn-quill'; export default function App() { const _editor = React.createRef();
}
const styles = StyleSheet.create({ title: { fontWeight: 'bold', alignSelf: 'center', paddingVertical: 10, }, root: { flex: 1, marginTop: StatusBar.currentHeight || 0, backgroundColor: '#eaeaea', }, editor: { flex: 1, padding: 0, borderColor: 'gray', borderWidth: 1, marginHorizontal: 30, marginVertical: 5, backgroundColor: 'white', }, });