alexborton
alexborton
@thinklinux I ended up with this; ``` module.exports = function(api) { api.cache(true) return { presets: ['babel-preset-expo'], plugins: [ [ 'module-resolver', { alias: { assets: './assets', components: './src/components', modules: './src/modules', routing:...
@thinklinux you will need to make sure you do a complete cache clear out; For expo; `expo start -c` and vanilla builds try `npm start -- --reset-cache` Try deleting the...
Here is a little quick and dirty solution i added in the fetch_ajax function; ``` // content fetch is successful so push it into markup var target = $('#' +...
Yep, exactly that! Whilst this is (probably) possible from the available events with the plugin, i feel it would be beneficial to have this built into the core. The code...
Can this be made a prop? `resizeMode`
Just going to bump this up - `collapsable={false}` works as expected, but seems like an unnecessary hack.
How would you make the default icon opacity 0 @knightmate ? I can't see any styling for this
We have a similar issue. Were you able to get to the bottom of this?
We are experiencing something similar i think. The report we get comes through Sentry in the shape of; `RCTFatalException: Error opening bundle /var/mobile/Containers/Data/Application/.../Library/Application Support/CodePush/.../CodePush/main.jsbundle` It's reported as a Fatal crash....
@nandorojo this is a great solution and shows a marked improvement for my heavier screens. I am however struggling to get the Title to show as it did.. The setup...