fix(android): resolve color parser and resource bundle resolution issues

This commit is contained in:
Daniel Arantes Loverde
2026-05-27 09:55:00 -03:00
parent 0e6206f899
commit 68864ee21a
9 changed files with 40 additions and 7 deletions

View File

@@ -25,11 +25,19 @@ struct OtpView: View {
var body: some View {
ScrollView {
VStack(spacing: 0) {
#if os(Android)
SwiftUI.Image("pedifoods", bundle: .module)
.resizable()
.scaledToFit()
.frame(width: 74, height: 74)
.padding(.top, 140)
#else
SwiftUI.Image("pedifoods")
.resizable()
.scaledToFit()
.frame(width: 74, height: 74)
.padding(.top, 140)
#endif
Text("Verificação")
.font(AppTypography.heading1)