---
title: shouldPresentInFullscreen
framework: uikit
role: symbol
role_heading: Instance Property
path: uikit/uipresentationcontroller/shouldpresentinfullscreen
---

# shouldPresentInFullscreen

A Boolean value indicating whether the presentation covers the entire screen.

## Declaration

```swift
var shouldPresentInFullscreen: Bool { get }
```

## Return Value

Return Value true if the presentation covers the screen or false if it covers all or part of the current view controller only.

## Discussion

Discussion The default implementation of this method returns true, indicating that the presentation covers the entire screen. You can override this method and return false to force the presentation to display only in the current context. If you override this method, do not call super.

## See Also

### Getting the presentation attributes

- [presentationStyle](uikit/uipresentationcontroller/presentationstyle.md)
- [adaptivePresentationStyle(for:)](uikit/uipresentationcontroller/adaptivepresentationstyle(for:).md)
- [adaptivePresentationStyle](uikit/uipresentationcontroller/adaptivepresentationstyle.md)
- [shouldRemovePresentersView](uikit/uipresentationcontroller/shouldremovepresentersview.md)
