Git Product home page Git Product logo

Comments (7)

pavelbabenko avatar pavelbabenko commented on June 2, 2024 1

If you have the same issue after using setImageDimensions properly, reopen the issue please

from react-native-awesome-gallery.

pavelbabenko avatar pavelbabenko commented on June 2, 2024

Hi @valeriashpiner
Could you send me screen recording?
And code sample with gallery usage

from react-native-awesome-gallery.

valeriashpiner avatar valeriashpiner commented on June 2, 2024

@pavelbabenko I'll do it during few next hours! Thank you.

from react-native-awesome-gallery.

valeriashpiner avatar valeriashpiner commented on June 2, 2024

@pavelbabenko it works as intened if I don't use renderItem prop. As soon as I add renderItem prop and I send there some custom component this is happening.

import React from 'react';
import Gallery from 'react-native-awesome-gallery';
import { StyleSheet, Dimensions, Image } from 'react-native';

const images = [
  'https://upload.wikimedia.org/wikipedia/commons/c/cd/London_Montage_L.jpg',
  'https://assets.vogue.com/photos/58917ad38c64075803ad0876/master/pass/00-holding-first-timers-guide-to-london.jpg',
];

const width = Dimensions.get('window').width;
const height = Dimensions.get('window').height;

const renderSlideDeck = ({ item }) => {
  return <Image source={{ uri: item }} style={styles.image} />;
};

export default function App() {
  return (
    <Gallery
      data={images}
      renderItem={renderSlideDeck}
      onIndexChange={(newIndex) => {
        console.log(newIndex);
      }}
      loop={true}
    />
  );
}

const styles = StyleSheet.create({
  image: {
    width: width,
    height: height,
  },
});
IMG_1041.MP4

from react-native-awesome-gallery.

valeriashpiner avatar valeriashpiner commented on June 2, 2024

I also tried to use FastImage instead of Image and I added the prop to FastImage:
onLoad={() => setImageDimensions({ width, height })}

In this case gallery is not accessible at all. I can't tap, zoom, drag, scroll, nothing.

from react-native-awesome-gallery.

pavelbabenko avatar pavelbabenko commented on June 2, 2024

As I see you’re using setImageDimensions incorrectly.
You have to pass width and height of loaded image, not dimensions of screen.
Please, check usage of setImageDimensions in example folder

from react-native-awesome-gallery.

valeriashpiner avatar valeriashpiner commented on June 2, 2024

@pavelbabenko perfect, it works with right usage of setImageDimensions.
Sorry for that!

from react-native-awesome-gallery.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.