pushNewScreenWithNavBar<T> method

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

Push a raw route with nav bar

Implementation

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