Skip to content

Commit

Permalink
Merge branch 'develop' into feature/rtl-support
Browse files Browse the repository at this point in the history
  • Loading branch information
tsdmrfth authored Apr 11, 2021
2 parents 762cec7 + cdd9357 commit 071417b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@
"prettier": "^2.0.5",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-builder-bob": "^",
"react-native-builder-bob": "^0",
"release-it": "^14.2.2",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "^2.1.0"
"react-native-gesture-handler": "^1.0.0",
"react-native-reanimated": "^2.0.0"
},
"jest": {
"preset": "react-native",
Expand Down Expand Up @@ -121,6 +121,5 @@
}
]
]
},
"dependencies": {}
}
}
10 changes: 5 additions & 5 deletions src/Steve.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,11 @@ export const Steve = ({ data, renderItem, keyExtractor, containerStyle, isRTL, i
}

return (
<PanGestureHandler {...{ onGestureEvent }}>
<Animated.View style={rtlStyle}>
<Animated.View style={[styles.container, containerStyle, rtlStyle]}>
<Items/>
</Animated.View>
<PanGestureHandler
activeOffsetX={[-1, 1]}
{...{ onGestureEvent }}>
<Animated.View style={[styles.container, containerStyle]}>
<Items/>
</Animated.View>
</PanGestureHandler>
)
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7828,7 +7828,7 @@ react-is@^17.0.1:
resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==

react-native-builder-bob@^:
react-native-builder-bob@^0:
version "0.18.1"
resolved "https://registry.yarnpkg.com/react-native-builder-bob/-/react-native-builder-bob-0.18.1.tgz#43f238e6cb6efffa6e3d23ac449eb7392650c2c3"
integrity sha512-cFhgXLE30HaY4APDxaXA/cwuL3xl0Rser75yLrVTfHQquPqCoixNs+cc97Cbk/nInkkDmHzBoJkC3tVItqKRsQ==
Expand Down

0 comments on commit 071417b

Please sign in to comment.