react-native-zoomable-view icon indicating copy to clipboard operation
react-native-zoomable-view copied to clipboard

bindToBorder Doesn't work.

Open mahiraltinkaya opened this issue 4 years ago • 4 comments

Hello there; I tried to explain with pictures and I show the styles clearly. I expect the image to stay in the layout, but the image gets bigger as possible.

Can you help me where am I going wrong? WhatsApp Image 2021-07-16 at 00 07 42 (2) WhatsApp Image 2021-07-16 at 00 07 42 (1) WhatsApp Image 2021-07-16 at 00 07 42

  return (
    <Layout
      style={[
        {
          flex: 1,
          backgroundColor: "black",
          flexDirection: "column",
          width: MAX_WIDTH,
        },
      ]}
    >
      <Layout style={{ width: 350, height: 350 }}>
        <ReactNativeZoomableView
          ref={zoomBottom}
          maxZoom={1.3}
          minZoom={1}
          zoomEnabled={true}
          movementSensibility={3}
          initialZoom={1}
          bindToBorders={true}
          //   onZoomAfter={logOutZoomStateBottom}
          style={{ width: 350, height: 350, padding: 10 }}
        >
          <Image
            source={props.original}
            style={{ width: 320, height: 320 }}
            resizeMode="contain"
          ></Image>
        </ReactNativeZoomableView>
      </Layout>
      <Layout
        style={{
          flex: 1,
          width: MAX_WIDTH,
          backgroundColor: "black",
        }}
      ></Layout>
    </Layout>
  );

mahiraltinkaya avatar Jul 15 '21 21:07 mahiraltinkaya

Same issue. Any solution?

tallesb avatar Jul 22 '21 14:07 tallesb

Try adding overflow: 'hidden' to your Layout containing ReactNativeZoomableView

n-ext avatar Jul 23 '21 10:07 n-ext

Try adding overflow: 'hidden' to your Layout containing ReactNativeZoomableView

Thanks! This solution worked for me!

tallesb avatar Jul 23 '21 10:07 tallesb

Try adding overflow: 'hidden' to your Layout containing ReactNativeZoomableView

Thank you mate. this worked for me!

mahiraltinkaya avatar Jul 23 '21 11:07 mahiraltinkaya