From bca941e04595f2e853c8375ab07fa66b1127eae3 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Tue, 23 Jul 2024 08:47:20 -0400 Subject: [PATCH] enables crossfading between images --- .../src/main/java/com/vitorpamplona/amethyst/Amethyst.kt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt index 829a0fbca..cd9c03ea7 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt @@ -114,7 +114,12 @@ class Amethyst : Application() { } } - fun imageLoaderBuilder(): ImageLoader.Builder = ImageLoader.Builder(this).diskCache { coilCache }.memoryCache { coilMemCache } + fun imageLoaderBuilder(): ImageLoader.Builder = + ImageLoader + .Builder(this) + .diskCache { coilCache } + .memoryCache { coilMemCache } + .crossfade(true) fun encryptedStorage(npub: String? = null): EncryptedSharedPreferences = EncryptedStorage.preferences(instance, npub)