Skip to content

Commit

Permalink
add scrollIndicator props for ios
Browse files Browse the repository at this point in the history
  • Loading branch information
thorbenandresen committed Dec 13, 2016
1 parent 42b41c3 commit e2b191c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion PhotoView.ios.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ export default class PhotoView extends Component {
contentContainerStyle={{ alignItems:'center', justifyContent:'center' }}
centerContent={true}
maximumZoomScale={this.props.maximumZoomScale}
minimumZoomScale={this.props.minimumZoomScale}>
minimumZoomScale={this.props.minimumZoomScale}
showsHorizontalScrollIndicator={this.props.showsHorizontalScrollIndicator}
showsVerticalScrollIndicator={this.props.showsVerticalScrollIndicator}
>

<TouchableWithoutFeedback
onPress={this.props.onTap ? this.props.onTap : function() {}}>
Expand Down

0 comments on commit e2b191c

Please sign in to comment.