Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. CHANGES TO NODE_MODULES:
  2.  
  3. ##### fitnessMobileApp\node_modules\react-native-ui-kitten\src\components\picker\RkOption - LINHA 16
  4. ##### E #####
  5. ##### fitnessMobileApp\node_modules\react-native-ui-kitten\src\components\picker\RkOptionsList - LINHA 104
  6.  
  7. - Substituir o método compareOption por este:
  8. compareOptions(option1, option2) { return (option1 && option2 && option1.key && option2.key && option1.key === option2.key) || (option1 && option2 && !option1.key && !option2.key && option1 === option2); }
  9.  
  10. ##### fitnessMobileApp\node_modules\@valdio\react-native-scrollable-tabview\lib\ScrollableTabBar - LINHA 252
  11.  
  12. borderWidth: 0,
  13.  
  14. ##### fitnessMobileApp\node_modules\expo\AppEntry
  15.  
  16. import React from 'react';
  17. import { KeepAwake, registerRootComponent } from 'expo';
  18. import App from '../../App';
  19. import {Provider} from 'react-redux';
  20. import configureStore from '../../src/store/configureStore';
  21.  
  22. const store = configureStore();
  23.  
  24. const RNRedux =() => (
  25. <Provider store={store}>
  26. <App/>
  27. </Provider>
  28. );
  29.  
  30. if (__DEV__) {
  31. KeepAwake.activate();
  32. }
  33.  
  34. registerRootComponent(RNRedux);
  35.  
  36. #####
  37. FitnessSystem\fitnessMobileApp\node_modules\react-native-pure-chart\examples\pure-chart\components\line-chart.js
  38.  
  39. linha 308:
  40. <ScrollView horizontal showsHorizontalScrollIndicator={false}>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement