Newbie Question: Manu project lesson 5 i can't see my images!

Hello everyone and thank you for your time.
I am at the point where I am supposed to use the List command to view images.
first, I did it alone after watching the video. I can view the name and price but not the images.
Second I watched the video again and made sure my code was the same as in the video and yet i couldn’t get Xcode to display images.
This is the code in ManuView:
//import SwiftUI

struct MenuView: View {
var menuItems:[MenuItem] = [

    MenuItem(name: "Onigir", price: "$1.99", imageName: "onigiri"),
    MenuItem(name:"Megure Sushi", price:"$5.99" , imageName:"meguro-sushi"),
    MenuItem(name: "Tako Sushi", price: "$5.00", imageName: "take-sushi"),
    MenuItem(name: "Avocado Maki", price: "$2.99", imageName: "avocad-maki"),
    MenuItem(name: "Tobiko Spicy Maki", price: "$4.99", imageName: "tobiko-spicy-maki"),
    MenuItem(name: "Salmon Sushi", price:"$4.99", imageName:"salmon-sushi"),
    MenuItem(name: "Hamachi Sushi", price: "6.99", imageName: "haamachi-sushi"),
    MenuItem(name:"Kani Sushi", price: "3.99", imageName: "kani-sushi"),
    MenuItem(name: "Tamago Sushi", price: "3.99", imageName: "tamago-sushi"),
    MenuItem(name: "California Roll", price: "3.99", imageName:"california-roll"),
    MenuItem(name: "Shrimp Sushi", price: "3.99", imageName: "shrimp-sushi"),
    MenuItem(name: "Ikura Sushi", price: "5.99", imageName:"ikura-sushi")]
    
    

var body: some View {
    List(menuItems) {item in
    

        Image(item.imageName)
    }
}

}
struct ContentView_Previews: PreviewProvider {
static var previews: some View{
MenuView()

}

},
and this is the code from the MeneItem.swift
// import Foundation

struct MenuItem: Identifiable {

var id:UUID = UUID()

var name:String

var price:String

var imageName:String

},
could someone help me please

Hello Hassan,

Thank you for reaching out with your question. It’s possible that the images are not showing up because they haven’t been imported into the assets folder. Can you please double-check to make sure that you have properly imported the images into the assets folder? Once they are properly imported, they should show up without any issues.

Let me know if you have any further questions or concerns. I’m here to help.

Best regards,
Julian

Hi @Hassan86

Welcome to the community.

If you have imported the images as specified by Chris Ching you may have forgotten to set the “Add to Target” option during the import.

To correct that, select all the images in the asset catalog and on the right hand panel select the left most icon at the top that looks like a page, (Show the File Inspector) and ensure that the Target Membership is checked. See the attached screenshot.

@Chris_Parker @julitheprogrammer Thank you all for your responses problem solved.