show<T extends Object?> static method
- required BuildContext context,
- required Widget gallery,
Displays a dialog with the provided gallery
above the current contents.
Implementation
static Future<T?> show<T extends Object?>({
required BuildContext context,
required Widget gallery,
}) {
final style = Theme.of(context).style;
return showGeneralDialog(
context: context,
pageBuilder: (
BuildContext buildContext,
Animation<double> animation,
Animation<double> secondaryAnimation,
) {
final CapturedThemes themes = InheritedTheme.capture(
from: context,
to: Navigator.of(context, rootNavigator: true).context,
);
return themes.wrap(gallery);
},
barrierDismissible: false,
barrierColor: style.colors.transparent,
transitionDuration: Duration.zero,
useRootNavigator: context.isMobile ? false : true,
);
}