lucasbento / react-native-thumbnail-video

Easily show thumbnails for videos on react-native.
MIT License
106 stars 36 forks source link

Hide Play Button #13

Closed haideralishah closed 6 years ago

haideralishah commented 6 years ago

I want to hide play button from thumbnail and only want to see the image. How can I do this?

haideralishah commented 6 years ago

I just resolve it myself by putting opacity: 0 in iconStyle.

<Thumbnail url={this.props.sourceProp} imageWidth={'100%'} imageHeight={'100%'} iconStyle={{ opacity: 0 }} />

lucasbento commented 6 years ago

Hey @haideralishah, I agree that there should be a better way to hide the play button, something like <Thumbnail showIcon={false} />, I would appreciate very much a PR implementing this.

lucasbento commented 6 years ago

Fixed by @leksyib on #15, thank you again, @leksyib!