toCupertinoModalPopup<T> method

Future<T?> toCupertinoModalPopup<T>(
  1. Widget cupertinoModalPopup, {
  2. ImageFilter? filter,
  3. bool semanticsDismissible = false,
  4. bool postponeToNextFrame = false,
})

Shows a modal iOS-style popup that slides up from the bottom of the screen.

  • Required parameters:
  • cupertinoModalPopup: (positional parameter) Widget to display.
  • optional parameters:
  • filter:
  • semanticsDismissible: whether the semantics of the modal barrier are included in the semantics tree

Implementation

Future<T?> toCupertinoModalPopup<T>(
  Widget cupertinoModalPopup, {
  ImageFilter? filter,
  bool semanticsDismissible = false,
  bool postponeToNextFrame = false,
}) =>
    _navigationBuilder.toCupertinoModalPopup<T>(
      cupertinoModalPopup,
      filter: filter,
      semanticsDismissible: semanticsDismissible,
      postponeToNextFrame: postponeToNextFrame,
    );