C
C
> I found out the solve ✅ > You should remove react-native from transformIgnorePatterns regexp array ! > > ``` > transformIgnorePatterns: [ > '/node_modules/(react-clone-referenced-element|@react-native-community|react-navigation|@react-navigation/.*|@unimodules/.*|native-base|react-native-code-push)', > ], > ``` >...
> For anyone looking out for a solution, you can try this library: https://www.npmjs.com/package/rn-swipe-gestures It's basically a clone of react-native-swipe-gestures. The only difference is you can add props to the...
To fix the unexpected token error, I updated the config-overrides.js with: ``` module.exports = override( babelInclude([ ... path.resolve('src'), path.resolve(__dirname, 'node_modules/@react-native-picker/picker'), ]), ); ```
Works @[indapublic](https://github.com/indapublic)! Just need to look out for any styles set on parent Views that may be interfering.
> On Android, my problem seems to be the fact that the dropdown doesn't overflow the container view of the Autocomplete component. Even when absolute, it doesn't show, you can...
> In my case, `@react-native-picker/picker` in my project and `@react-native-picker/picker` under `react-native-picker-select` are different version. > I have to remove lock file and reinstall packages to make all `@react-native-picker/picker` are...
I've also been getting this error with expo managed workflow. Anyone find a fix?
Any update on this? I'm also facing the same issue, and we don't show captions so that fix won't work for us
I am having a similar issue. Everything renders as visible. Any thoughts?
> You can modify the LineChart.tsx. > > Check the point calculation logic here: > > https://github.com/indiespirit/react-native-chart-kit/blob/f30a37d73cd02807c2f19cd8094f1cacb9f6ba3b/src/line-chart/LineChart.tsx#L677 > > You need to modify the x calculation logic, the straight way...