ethanyuwang
ethanyuwang
I would love to have this function too
I changed my gradle file to the following so it would just use parent project's dependencies: ``` def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } buildscript { repositories...
Great question. This outdated dependency actually caused me a problem when I tried to compile a release build with `react-native: 0.58.4`. I copied off a build.gradle from another project that...
can someone make a pull request?
borderRadius works on ios but not on android. any workaround on this?
@rasselll Hi I have just tried your fix and the scrolling still only takes half of the space
You can add your own methods in `editor.html` to support disabling/enabling editing: ``` zss_editor.disableContentEditing = function(html) { $('#zss_editor_content').attr('contenteditable','false'); } zss_editor.enableContentEditing = function(html) { $('#zss_editor_content').attr('contenteditable','true'); } ``` Then in 'const.js': ```...
Having the same problem. Have already copied editor.html to android/app/src/main/assets
I believe you can insert html or text at caret's location?
Having the same problem. focusContent doesn't work on Android but works on iOS on `"react-native": "0.55.4",`