pushNewScreenWithoutNavBar<T> method

Future<T?> pushNewScreenWithoutNavBar<T>(
  1. BuildContext context,
  2. Route<T> route
)

Push a raw route without nav bar

Implementation

Future<T?> pushNewScreenWithoutNavBar<T>(
    BuildContext context, Route<T> route) {
  return pushWithoutNavBar(context, route);
}