minibits-cash / minibits_wallet

MIT License
73 stars 7 forks source link

[Feature] Display animated pictures in received zap comments #102

Open alltheseas opened 2 months ago

alltheseas commented 2 months ago

what happens

Sometimes I receive zap comments, containing an animation (GIF), along with zaps. I cannot see said animation.

suggestion

Provide an opt-in option to display in transaction view, detailed transaction view the GIF / animation.

related to

101 there should be a way to tap on GIF to examine context of note being replied to in e.g. njump

minibits-cash commented 2 months ago

This requires a new build of the application so won't come ealier the next (or later) native release.

Note to self: To support animated GIFs and WebP formats, add to android/app/build.gradle

dependencies {
  // For animated GIF support
  implementation 'com.facebook.fresco:animated-gif:2.5.0' // check if not higher

  // For WebP support, including animated WebP
  implementation 'com.facebook.fresco:animated-webp:2.5.0'
}