| 
				
			 | 
			
			
				@@ -63,7 +63,27 @@ class ExampleWaitingCapture extends Component { 
			 | 
		
	
		
			
			| 
				63
			 | 
			
				63
			 | 
			
			
				   } 
			 | 
		
	
		
			
			| 
				64
			 | 
			
				64
			 | 
			
			
				 } 
			 | 
		
	
		
			
			| 
				65
			 | 
			
				65
			 | 
			
			
				 ``` 
			 | 
		
	
		
			
			| 
				
			 | 
			
				66
			 | 
			
			
				+## With ScrollView 
			 | 
		
	
		
			
			| 
				
			 | 
			
				67
			 | 
			
			
				+```js 
			 | 
		
	
		
			
			| 
				
			 | 
			
				68
			 | 
			
			
				+import ViewShot from "react-native-view-shot"; 
			 | 
		
	
		
			
			| 
				66
			 | 
			
				69
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				
			 | 
			
				70
			 | 
			
			
				+class ExampleCaptureOfScrollView extends Component { 
			 | 
		
	
		
			
			| 
				
			 | 
			
				71
			 | 
			
			
				+  componentDidMount () { 
			 | 
		
	
		
			
			| 
				
			 | 
			
				72
			 | 
			
			
				+    this.refs.viewShot.capture().then(uri => { 
			 | 
		
	
		
			
			| 
				
			 | 
			
				73
			 | 
			
			
				+      console.log("do something with ", uri); 
			 | 
		
	
		
			
			| 
				
			 | 
			
				74
			 | 
			
			
				+    }); 
			 | 
		
	
		
			
			| 
				
			 | 
			
				75
			 | 
			
			
				+  } 
			 | 
		
	
		
			
			| 
				
			 | 
			
				76
			 | 
			
			
				+  render() { 
			 | 
		
	
		
			
			| 
				
			 | 
			
				77
			 | 
			
			
				+    return ( 
			 | 
		
	
		
			
			| 
				
			 | 
			
				78
			 | 
			
			
				+        <ScrollView> 
			 | 
		
	
		
			
			| 
				
			 | 
			
				79
			 | 
			
			
				+            <ViewShot ref="viewShot" options={{ format: "jpg", quality: 0.9 }}> 
			 | 
		
	
		
			
			| 
				
			 | 
			
				80
			 | 
			
			
				+                    ... All content of the ScrollView ... 
			 | 
		
	
		
			
			| 
				
			 | 
			
				81
			 | 
			
			
				+            </ViewShot>                        
			 | 
		
	
		
			
			| 
				
			 | 
			
				82
			 | 
			
			
				+        </ScrollView> 
			 | 
		
	
		
			
			| 
				
			 | 
			
				83
			 | 
			
			
				+    ); 
			 | 
		
	
		
			
			| 
				
			 | 
			
				84
			 | 
			
			
				+  } 
			 | 
		
	
		
			
			| 
				
			 | 
			
				85
			 | 
			
			
				+} 
			 | 
		
	
		
			
			| 
				
			 | 
			
				86
			 | 
			
			
				+``` 
			 | 
		
	
		
			
			| 
				67
			 | 
			
				87
			 | 
			
			
				 **Props:** 
			 | 
		
	
		
			
			| 
				68
			 | 
			
				88
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				69
			 | 
			
				89
			 | 
			
			
				 - **`children`**: the actual content to rasterize. 
			 |