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

Not working with Stack.Screen presentation: 'modal' on iOS

Open ph113 opened this issue 2 years ago • 0 comments

Hi,

If it's possible to use this on modal screen? If so, any examples? Thanks!

I have the screen configured like this:

<Stack.Group>
        <Stack.Screen
          name={ScreenName.Edit}
          component={EditScreen}
          options={{
            presentation: 'modal',
            gestureEnabled: true
          }}
        />
</Stack.Group>

When I use DraggableGrid in EditScreen, it behaves similarly to ScrollView with scrollEnabled. The problem occurs only in iOS. Has anyone had a similar problem?

ph113 avatar Dec 23 '22 14:12 ph113