List

A data-driven list with plain, inset, or alternating row presentation.

A data-driven list with plain, inset, or alternating row presentation.

Public API

  • FList
  • FListPresentation
  • FListAlternatingStart

Example

FList(
    transactions,
    presentation: .separated
) { transaction in
    FTransactionRow(
        title: transaction.title,
        amount: .decimal(transaction.amount),
        date: .date(transaction.date)
    )
}

Source

This reference follows Sources/FreakUI/Components/Layout/FList.swift. Component-specific configuration is documented under the public initializer, modifier, and supporting types in that source file.