Skip to content

Commit

Permalink
closes #182
Browse files Browse the repository at this point in the history
  • Loading branch information
Sankhadeep committed Sep 30, 2016
1 parent 099e38c commit 9dce714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Components/Widgets/Content.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default class Content extends NativeBaseComponent {
const contentContainerStyle = this.props.contentContainerStyle || {};
contentContainerStyle.padding = (this.props.padder) ? this.getTheme().contentPadding : 0;
return(
<KeyboardAwareScrollView ref={c => this._scrollview = c} {...this.prepareRootProps()} contentContainerStyle={contentContainerStyle}>{this.props.children}</KeyboardAwareScrollView>
<KeyboardAwareScrollView automaticallyAdjustContentInsets={false} ref={c => this._scrollview = c} {...this.prepareRootProps()} contentContainerStyle={contentContainerStyle}>{this.props.children}</KeyboardAwareScrollView>
);
}
}

0 comments on commit 9dce714

Please sign in to comment.