Initializer

init(sortOrder:columns:rows:)

Creates a sortable table with the given columns and rows.

Declaration 宣言

init<Sort>(sortOrder: Binding<[Sort]>, columns: () -> Columns, rows: () -> Rows) where Sort : SortComparator, Columns.TableRowValue == Sort.Compared
Available when Value is Rows.TableRowValue, Rows conforms to TableRowContent, Columns conforms to TableColumnContent, and Rows.TableRowValue is Columns.TableRowValue.

Discussion 議論

  • Parameters パラメータ

    • sortOrder: A binding to the ordered sorting of columns.

    • columns: The columns to display in the table.

    • rows: The rows to display in the table.

See Also 参照

Creating a Sortable Table from Columns and Rows