Kudo / react-native-image-carousell

A component for image gallery carousell like iOS Photos app
MIT License
96 stars 13 forks source link

Preview images should be optional #1

Closed shaneosullivan closed 8 years ago

shaneosullivan commented 8 years ago

Some apps may want image previews, other may not. For this to be more reusable, there should be a prop for showPreview

Kudo commented 8 years ago

Nice suggestion. Thank you @shaneosullivan, I will do it recently.

Kudo commented 8 years ago

Sorry for my late to update this. I've added a showPreview property to v0.1.3 for this case. Something like

  <ImageCarousell
      dataSource={this.state.dataSource}
      showPreview={false}
  />

Thank for your suggestions.