Get a nested json in URL session? – Ios swift
{ "data":{ "email":"[email protected]", "password":"123", "token":"" } } struct JsonResult: View{ @State private var results = [GetData]() var body: some View{ List(results, id: .email){ item in VStack(alignment: .leading) { Text(item.password) .font(.headline) Text(item.token) .font(.headline) } }.task { await loadData() } } struct…