The ForEach
is a view container, so inside it there should be some view, but your net
is a model (instance of SocialNetwork
). Put there some list row view presenting one network, like
List {
ForEach(networks) { net in
Label(net.url, image: net.icon)
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…