Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeError: Cannot read property 'makeMutable' of undefined This error is located at: in Unknown (created by CategorySlider) #533

Open
TayyabAli204 opened this issue Jan 20, 2024 · 12 comments
Assignees
Labels
bug Something isn't working

Comments

@TayyabAli204
Copy link

Describe the bug
A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks!

To Reproduce
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior
A clear and concise description of what you expected to happen.

Screenshots
If applicable, add screenshots to help explain your problem.

Versions (please complete the following information):

  • react: v0.0.0
  • react-native: v0.0.0
  • react-native-reanimated: v0.0.0
  • react-native-reanimated-carousel: v0.0.0
  • react-native-gesture-handler: v0.0.0

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

@TayyabAli204 TayyabAli204 added the bug Something isn't working label Jan 20, 2024
Copy link

dosubot bot commented Jan 20, 2024

🤖

Hello @TayyabAli204! 🖐️

I'm Dosu, a bot created to assist you with your issues, answer your queries, and guide you on becoming a contributor. While the human maintainers are busy, consider me your friendly helper in the interim.

Great to see you here! I'm currently looking into your issue and I'll get back to you with a full answer shortly. Hang tight! 🛠️

@TayyabAli204
Copy link
Author

🤖

Hello @TayyabAli204! 🖐️

I'm Dosu, a bot created to assist you with your issues, answer your queries, and guide you on becoming a contributor. While the human maintainers are busy, consider me your friendly helper in the interim.

Great to see you here! I'm currently looking into your issue and I'll get back to you with a full answer shortly. Hang tight! 🛠️

ok I am waiting for your response

Copy link

dosubot bot commented Jan 20, 2024

🤖

Hey there, @TayyabAli204! 👋

I see you're looking for assistance with something related to react-native-reanimated-carousel. Could you please provide me with more details about the issue you're facing or the question you have? This will help me provide you with the most accurate and helpful response.


This response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research.

Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant.

If you want to continue the conversation, start your reply with @dosu-bot.

@ChrisV07
Copy link

ChrisV07 commented Feb 8, 2024

i have the same issue :(

@daxingyun
Copy link

同样的问题 你们打算啥时候解决 或提供方案

@JoseVov
Copy link

JoseVov commented Mar 27, 2024

Same issue here

@TayyabAli204 did you find a way to solve it?

@1wayticket
Copy link

same problem

@kuldeepAlG
Copy link

I was getting this same error, running yarn start --reset-cache resolved the issue

@talhabinkhalil
Copy link

Same issue

@gautamsamyak
Copy link

npx react-native start --reset-cache

@a84506733
Copy link

bable.config.js add plugins: [
'react-native-reanimated/plugin',
],

@farhanafandi
Copy link

farhanafandi commented Nov 15, 2024

Hi @TayyabAli204
Maybe this can help your problem,

First you need to install react-native-gesture-handler and react-native-reanimated.

After finished installation add react-native-reanimated/plugin in babel.config.js

//babel.config.js

module.exports = {
   presets: [
     ... // don't add it here :)
   ],
   plugins: [
     ...
     'react-native-reanimated/plugin',
   ],
 };

Then wrap metro config with wrapWithReanimatedMetroConfig, edit your metro.config.js and edit into something like this

//metro.config.js
const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config');
const { wrapWithReanimatedMetroConfig } = require('react-native-reanimated/metro-config');

/**
 * Metro configuration
 * https://reactnative.dev/docs/metro
 *
 * @type {import('metro-config').MetroConfig}
 */
const config = {};

module.exports = wrapWithReanimatedMetroConfig(mergeConfig(getDefaultConfig(__dirname), config));

if all step is done just run metro with reset flag
npm start -- --reset-cache

Done!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests