SHISME / react-native-draggable-grid

A draggable and sortable grid of react-native
308 stars 96 forks source link

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

Open ph113 opened 1 year ago

ph113 commented 1 year ago

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?