|  | @@ -34,6 +34,7 @@ This document lays out the current public properties and methods for the React N
 | 
	
		
			
			| 34 | 34 |  - [`userAgent`](Reference.md#useragent)
 | 
	
		
			
			| 35 | 35 |  - [`allowsInlineMediaPlayback`](Reference.md#allowsinlinemediaplayback)
 | 
	
		
			
			| 36 | 36 |  - [`bounces`](Reference.md#bounces)
 | 
	
		
			
			|  | 37 | +- [`overScrollMode`](Reference.md#overscrollmode)
 | 
	
		
			
			| 37 | 38 |  - [`contentInset`](Reference.md#contentinset)
 | 
	
		
			
			| 38 | 39 |  - [`dataDetectorTypes`](Reference.md#datadetectortypes)
 | 
	
		
			
			| 39 | 40 |  - [`scrollEnabled`](Reference.md#scrollenabled)
 | 
	
	
		
			
			|  | @@ -371,6 +372,22 @@ Boolean value that determines whether the web view bounces when it reaches the e
 | 
	
		
			
			| 371 | 372 |  
 | 
	
		
			
			| 372 | 373 |  ---
 | 
	
		
			
			| 373 | 374 |  
 | 
	
		
			
			|  | 375 | +### `overScrollMode`
 | 
	
		
			
			|  | 376 | +
 | 
	
		
			
			|  | 377 | +Specifies the over scroll mode.
 | 
	
		
			
			|  | 378 | +
 | 
	
		
			
			|  | 379 | +Possible values for `overScrollMode` are:
 | 
	
		
			
			|  | 380 | +
 | 
	
		
			
			|  | 381 | +- `always` (default) - Always allow a user to over-scroll this view, provided it is a view that can scroll.
 | 
	
		
			
			|  | 382 | +- `content` - Allow a user to over-scroll this view only if the content is large enough to meaningfully scroll, provided it is a view that can scroll.
 | 
	
		
			
			|  | 383 | +- `never` - Never allow a user to over-scroll this view.
 | 
	
		
			
			|  | 384 | +
 | 
	
		
			
			|  | 385 | +| Type   | Required | Platform |
 | 
	
		
			
			|  | 386 | +| ------ | -------- | -------- |
 | 
	
		
			
			|  | 387 | +| string | No       | Android  |
 | 
	
		
			
			|  | 388 | +
 | 
	
		
			
			|  | 389 | +---
 | 
	
		
			
			|  | 390 | +
 | 
	
		
			
			| 374 | 391 |  ### `contentInset`
 | 
	
		
			
			| 375 | 392 |  
 | 
	
		
			
			| 376 | 393 |  The amount by which the web view content is inset from the edges of the scroll view. Defaults to {top: 0, left: 0, bottom: 0, right: 0}.
 |