react-native-animated-charts icon indicating copy to clipboard operation
react-native-animated-charts copied to clipboard

Invariant Violation: Tried to register two views with the same name RNGestureHandlerButton

Open verylovestars opened this issue 3 years ago • 4 comments

Invariant Violation: Tried to register two views with the same name RNGestureHandlerButton, js engine: hermes

Using react-native-animated-charts

import React from "react";
import Box from "@src/view/components/controls/Box";
import {ChartDot, ChartPath, ChartPathProvider, monotoneCubicInterpolation} from '@rainbow-me/animated-charts'
import {Dimensions} from "react-native";

export const {width: SIZE} = Dimensions.get('window');

export const data = [
    {x: 1453075200, y: 1.47}, {x: 1453161600, y: 1.37},
    {x: 1453248000, y: 1.53}, {x: 1453334400, y: 1.54},
    {x: 1453420800, y: 1.52}, {x: 1453507200, y: 2.03},
    {x: 1453593600, y: 2.10}, {x: 1453680000, y: 2.50},
    {x: 1453766400, y: 2.30}, {x: 1453852800, y: 2.42},
    {x: 1453939200, y: 2.55}, {x: 1454025600, y: 2.41},
    {x: 1454112000, y: 2.43}, {x: 1454198400, y: 2.20},
];

const points = monotoneCubicInterpolation({data, range: 40});

const StatsPage = () => {
    
    return (
        <Box>
        </Box>
    )
}

export default StatsPage

verylovestars avatar Aug 16 '22 06:08 verylovestars

Add a resolution to your package.json should fix the issue:

  "resolutions": {
    "react-native-gesture-handler": "2.6.2",
  },

kierangillen avatar Oct 14 '22 11:10 kierangillen

"resolutions": { "react-native-gesture-handler": "2.6.2", }, I tried this and add it but not work the same error.

Youssef-Durgham avatar Oct 17 '22 22:10 Youssef-Durgham

same error any one find solutions ?

MouhamedMokkhtar avatar Nov 21 '22 16:11 MouhamedMokkhtar

the same error :((

tieumainhi avatar Dec 16 '22 07:12 tieumainhi