I could solve this problem to change the codes like below:
removing @State
InfoRow.swift
import SwiftUI
struct InfoRow: View {
@EnvironmentObject var appState: AppState
var id: Int
var name: String
var memo: String
var body: some View {
VStack{
Text(String(id))
Text(name)
Text(memo)
}
}
}
CLICK HERE to find out more related problems solutions.