zoomIn<T extends Widget> static method
void
zoomIn<T extends Widget>(})
Zoom In (no slide)
Implementation
static void zoomIn<T extends Widget>(
T Function() pageBuilder, {
Duration duration = _defaultDuration,
Curve curve = _defaultCurve,
}) {
Get.to(
pageBuilder(),
transition: Transition.topLevel,
duration: duration,
curve: curve,
opaque: true, // prevents background repaint
fullscreenDialog: true, // reduces horizontal shift
);
}