I have an image in the string (base 64) how I can decode this string for Image() using SwiftUI.
Know I am using this format:
Image(imageFromAppGroup(key: "image0")).resizable().frame(width: 70, height: 70)
.cornerRadius(10)
.background(Color(red: 0.218, green: 0.215, blue: 0.25))
I need a past base 64 images instead of "image0". How I can do this?