UNPKG
rn-zoomable
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A zoomable image component like Instagram
github.com/aligos/rn-zoomable
aligos/rn-zoomable
rn-zoomable
/
helpers
/
getScale.js
7 lines
(5 loc)
•
192 B
JavaScript
View Raw
1
2
3
4
5
6
7
// @flow
const
SCALE_MULTIPLIER
=
1.2
;
export
default
function
getScale
(
currentDistance
:
number
,
initialDistance
:
number
) {
return
(currentDistance / initialDistance) *
SCALE_MULTIPLIER
; }