react-native-draggable icon indicating copy to clipboard operation
react-native-draggable copied to clipboard

touchableOpacityProps and animatedViewProps just not being passed

Open MartinSchere opened this issue 3 years ago • 0 comments

Are these props even valid? Whatever I pass here doesn't seem to get applied, for example

<Draggable
        x={0}
        y={y}
        renderSize={100}
        maxX={0}
        minX={0}
        maxY={Dimensions.get("screen").height - y}
        minY={arrowIconSize + 15}
        touchableOpacityProps={{ style: { backgroundColor: "red" } }}
        animatedViewProps={{ activeOpactiy: 1.0 }}
      >

MartinSchere avatar Aug 06 '20 20:08 MartinSchere