popupScreen method

Widget popupScreen(
  1. BuildContext context, {
  2. required String title,
  3. required String text,
  4. required String name,
  5. Widget? image,
  6. bool interactive = true,
  7. EdgeInsetsGeometry? margin,
  8. Decoration? decoration,
  9. EdgeInsetsGeometry? padding,
  10. CrossAxisAlignment? crossAxisAlignment,
  11. TextStyle? titleStyle,
  12. TextStyle? textStyle,
})

Supply a 'popup' screen that zooms in on the screen.

Implementation

Widget popupScreen(
  BuildContext context, {
  required String title,
  required String text,
  required String name,
  Widget? image,
  bool interactive = true,
  EdgeInsetsGeometry? margin,
  Decoration? decoration,
  EdgeInsetsGeometry? padding,
  CrossAxisAlignment? crossAxisAlignment,
  TextStyle? titleStyle,
  TextStyle? textStyle,
}) =>
    webPageBaseController.popupScreen(
      context,
      title: title,
      text: text,
      name: name,
      image: image,
      interactive: interactive,
      margin: margin,
      decoration: decoration,
      padding: padding,
      crossAxisAlignment: crossAxisAlignment,
      titleStyle: titleStyle,
      textStyle: textStyle,
    );