---
title: "init(_:)"
framework: swiftui
role: symbol
role_heading: Initializer
path: "swiftui/tablerow/init(_:)"
---

# init(_:)

Creates a table row for the given value.

## Declaration

```swift
nonisolated init(_ value: Value)
```

## Parameters

- `value`: The value of the row.

## Discussion

Discussion The table provides the value of a row to each column of a table, which produces the cells for each row in the column. The following example creates a row for one instance of the Person type. The table delivers this value to its columns, which displays different fields of Person.  TableRow(Person(givenName: "Tom", familyName: "Clark"))
