diff --git a/docs/scrollview.html b/docs/scrollview.html
index ec73a0c2c9a..96c721dd122 100644
--- a/docs/scrollview.html
+++ b/docs/scrollview.html
@@ -92,9 +92,9 @@ exports.examples : function() {
return (
<ScrollView
+ automaticallyAdjustContentInsets={false}
onScroll={() => { console.log('onScroll!'); }}
scrollEventThrottle={200}
- contentInset={{top: -50}}
style={styles.scrollView}>
{THUMBS.map(createThumbRow)}
</ScrollView>
@@ -106,8 +106,8 @@ exports.examples : function() {
return (
<ScrollView
+ automaticallyAdjustContentInsets={false}
horizontal={true}
- contentInset={{top: -50}}
style={[styles.scrollView, styles.horizontalScrollView]}>
{THUMBS.map(createThumbRow)}
</ScrollView>