Giter Site home page Giter Site logo

Comments (7)

kamui545 avatar kamui545 commented on May 18, 2024 19

You need to wrap the gallery with GestureHandlerRootView if you're using it inside a modal on Android.

import { GestureHandlerRootView } from 'react-native-gesture-handler';

<Modal
  visible={viewerVisible}
  animationType="fade"
  transparent
  onRequestClose={closeViewer}>
  <GestureHandlerRootView style={{ flex: 1 }}>
    <Gallery
      data={images}
      onSwipeToClose={closeViewer}
      onIndexChange={onGalleryIndexChange}
      initialIndex={viewerPhoto}
    />
  </GestureHandlerRootView>
</Modal>

Maybe this could be handled by the library itself? @pavelbabenko

https://docs.swmansion.com/react-native-gesture-handler/docs/#for-library-authors

from react-native-awesome-gallery.

ArnabXD avatar ArnabXD commented on May 18, 2024

I am also having the same issue.

  • react-native: 0.66
  • react-native-awessome-gallery: 0.2.6
  • react-native-reanimated: 2.2.3

Reproducible Code

import React, { useState } from 'react';
import { FlatList, Modal, Image, Pressable, Dimensions } from 'react-native';
import { Container } from '../components'; // A View with flex: 1 and flexGrow: 1
import AwesomeGallery from 'react-native-awesome-gallery';

const { width } = Dimensions.get('screen');

const data = new Array(25).fill(
  'https://cdn.stocksnap.io/img-thumbs/960w/business%20meeting-people_QVIEE1UZSX.jpg',
);

export const Gallery = () => {
  const [modalVisible, setModalVisible] = useState(false);
  const [initialIndex, setInitialIndex] = useState(0);
  return (
    <Container>
      <FlatList
        data={data}
        keyExtractor={(item, index) => index + item}
        numColumns={3}
        renderItem={({ item, index }) => (
          <Pressable
            onPress={() => {
              setInitialIndex(index);
              setModalVisible(true);
            }}
          >
            <Image
              source={{ uri: item }}
              style={{ height: width / 3, width: width / 3 }}
            />
          </Pressable>
        )}
      />
      <Modal
        visible={modalVisible}
        transparent={true}
        animationType="slide"
        onRequestClose={() => setModalVisible(false)}
      >
        <AwesomeGallery
          data={data}
          initialIndex={initialIndex}
          numToRender={10}
          keyExtractor={(item, index) => index + item}
        />
      </Modal>
    </Container>
  );
};

from react-native-awesome-gallery.

pavelbabenko avatar pavelbabenko commented on May 18, 2024

@phamhuuan Is it Android?
I can't reproduce on iOS

from react-native-awesome-gallery.

ArnabXD avatar ArnabXD commented on May 18, 2024

It is on Android ,

from react-native-awesome-gallery.

phamhuuan avatar phamhuuan commented on May 18, 2024

@pavelbabenko yes it is on Android.

from react-native-awesome-gallery.

phamhuuan avatar phamhuuan commented on May 18, 2024

I have tried with react-native-modal: 13.0.0
AwesomeGallery work correctly when coverScreen={false}. If coverScreen = true, I have the same issue with using Modal from 'react-native'

from react-native-awesome-gallery.

pavelbabenko avatar pavelbabenko commented on May 18, 2024

Tested on Android with v0.3.0. Everything worked well.
Note: v0.3.0 uses Gesture Handler v2
I'm closing the issue, but if the bug appears, please reopen it again.

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.