screens/DSActivityFeed

DSActivityFeed

screens
since v2.0

Vertical event feed with avatar, event type icon, description, and timestamp. Supports grouping by date.

iOS 17+macOS 14+

Purpose

Audit logs, collaboration activity, and in-app notification history.

Interactive Reference

Live showroom

Need the full visual surface?

Screenshots do not scale well across every component, state, and variant. For the real interactive reference, import the package and launch DSShowcaseRoot().

Best for exploring:

variants, states, categories, and real app examples in one place.

Props

PropTypeDefaultDescription
itemsreq[DSActivityItem]โ€”Feed items.
groupByDateBooltrueGroups items under date headers.
onLoadMore(() -> Void)?nilPagination callback.

Examples

Project activity

Activity timeline for a project.

swift
DSActivityFeed(
    items: viewModel.activityItems,
    groupByDate: true,
    onLoadMore: { viewModel.loadMore() }
)

Related Components