François Hereng
François Hereng
Rendering a custom tabbar with prop `renderTabBar` using `ScrollableTab` component makes it much smoother. Also adding prop `prerenderingSiblingsNumber={NUMBER_OF_TABS}` (on Tabs) reduces flickering when changing tab. Tested on iOS + android...
Had similar problem, conflict with the support lib, fixed with: ``` compile ('com.futuremind.recyclerfastscroll:fastscroll:0.2.5') { exclude module: 'appcompat-v7' exclude group: 'com.android.support' } ``` Hope it helps, cheers
Same problem here EDIT: Solved putting firebase version down to 10.0.1. My firestack build.gradle looks like this: ``` dependencies { compile 'com.facebook.react:react-native:0.20.+' compile 'com.google.firebase:firebase-core:10.0.1' compile 'com.google.firebase:firebase-auth:10.0.1' compile 'com.google.firebase:firebase-analytics:10.0.1' compile 'com.google.firebase:firebase-database:10.0.1'...
+1 up, same problem for me
Hi, I'm trying to make a pull request with that modification but I can't push my commits in the branch I created, I'm getting this error: ``` remote: Permission to...
Sure, and as default parameter I can put the shortenTitle function you already have.
Same error on npm v2.14 and RN v0.20 with your last version 4.2.
What I did to solve this was to call a ExNavigator child in a new route with showNavigationBar: false. I don't know if this is the best solution but it...
You can keep refs to each accordions, and in `onPress` function: toggle the other ones, I don't know if it's the best solution but it works. It would be something...