---
title: SiriTipView
framework: appintents
role: symbol
role_heading: Structure
path: appintents/siritipview
---

# SiriTipView

A SwiftUI view that displays the phrase someone uses to invoke an App Shortcut.

## Declaration

```swift
@MainActor @preconcurrency struct SiriTipView
```

## Overview

Overview Use a SiriTipView to display the spoken phrase for the intent you specify. Include an instance of your intent when you create the view, and bind the view to a Boolean to handle the view’s presentation. The following example shows how to configure a button for a reorder intent and bind it to an isVisible variable. SiriTipView(intent: ReorderIntent(), isVisible: $isVisible)     .siriTipViewStyle(.dark) Note that you must use the AppIntent in an AppShortcut. Otherwise this will display an empty view.

## Topics

### Creating the view

- [init(intent:isVisible:)](appintents/siritipview/init(intent:isvisible:).md)

## Relationships

### Conforms To

- [Sendable](swift/sendable.md)
- [SendableMetatype](swift/sendablemetatype.md)
- [View](swiftui/view.md)

## See Also

### Tip views

- [SiriTipUIView](appintents/siritipuiview.md)
- [SiriTipViewStyle](appintents/siritipviewstyle.md)
