В React Native компонент ScrollView, содержащий одно изображение, можно использовать для увеличения объекта, задав свойства maximumScale и minimumScale. В документации ScrollView перечислено свойство currentScale, а также свойство scrollTo и onScroll, но может быть неочевидным то, как программно сбросить масштаб изображения, особенно если вы хотите анимировать этот переход.

Я использую следующее решение:

import React, { Component } from 'react'
import { ScrollView, Image, TouchableHighlight} from 'react-native'
export default class ZoomView extends Component {
static defaultProps = {
  doAnimateZoomReset: false,
  maximumZoomScale: 2,
  minimumZoomScale: 1,
  zoomHeight: deviceHeight, 
  zoomWidth: deviceWidth,
}
handleResetZoomScale = (event) => {
  this.scrollResponderRef.scrollResponderZoomTo({ 
     x: 0, 
     y: 0, 
     width: this.props.zoomWidth, 
     height: this.props.zoomHeight, 
     animated: true 
  })
}
setZoomRef = node => { //the ScrollView has a scrollResponder which allows us to access more methods to control the ScrollView component
  if (node) {
    this.zoomRef = node
    this.scrollResponderRef = this.zoomRef.getScrollResponder()
  }
}
render() {
  return (
    <ScrollView
      contentContainerStyle={{ alignItems: 'center’, justifyContent: 'center' }} //flexbox styles
      centerContent //centers content when zoom is less than scroll view bounds 
      maximumZoomScale={this.props.maximumZoomScale}
      minimumZoomScale={this.props.minimumZoomScale}
      showsHorizontalScrollIndicator={false}
      showsVerticalScrollIndicator={false}
      ref={this.setZoomRef} //helps us get a reference to this ScrollView instance
      style={{ overflow: 'hidden' }}
     >
       <TouchableHighlight
         onPress={this.handleResetZoomScale}
       >
         <Image
           source={this.props.source}
         />
       </TouchableHighlight>
     </ScrollView>
   )
  }
}

Приведенный выше код позволит нам щелкнуть изображение внутри ScrollView, чтобы анимировать возврат к нормальному масштабу и положению.