fix(android): restore bundle mapping for module resources and local login animation

This commit is contained in:
Daniel Arantes Loverde
2026-05-27 15:22:57 -03:00
parent be6c31832f
commit 9fb8dae45a
8 changed files with 10 additions and 10 deletions

View File

@@ -16,7 +16,7 @@ struct LoginView: View {
@ViewBuilder private var logoImage: some View {
#if os(Android)
SwiftUI.Image("pedifoods")
SwiftUI.Image("pedifoods", bundle: .module)
.resizable()
#else
SwiftUI.Image("pedifoods")
@@ -26,7 +26,7 @@ struct LoginView: View {
@ViewBuilder private var pinHeroImage: some View {
#if os(Android)
SwiftUI.Image(colorScheme == .dark ? "pin_image_app_dark" : "pin_image_app")
SwiftUI.Image(colorScheme == .dark ? "pin_image_app_dark" : "pin_image_app", bundle: .module)
.resizable()
#else
SwiftUI.Image("pin_image_app")