---
title: TimelineViewDefaultContext
framework: swiftui
role: symbol
role_heading: Type Alias
path: swiftui/timelineviewdefaultcontext
---

# TimelineViewDefaultContext

Information passed to a timeline view’s content callback.

## Declaration

```swift
typealias TimelineViewDefaultContext = TimelineView<EveryMinuteTimelineSchedule, Never>.Context
```

## Discussion

Discussion The context includes both the date from the schedule that triggered the callback, and a cadence that you can use to customize the appearance of your view. For example, you might choose to display the second hand of an analog clock only when the cadence is TimelineView.Context.Cadence.seconds or faster. note: This type alias uses a specific concrete instance of TimelineView.Context that all timeline views can use. It does this to prevent introducing an unnecessary generic parameter dependency on the context type.

## See Also

### Updating a view on a schedule

- [Updating watchOS apps with timelines](watchos-apps/updating-watchos-apps-with-timelines.md)
- [TimelineView](swiftui/timelineview.md)
- [TimelineSchedule](swiftui/timelineschedule.md)
