pushScreenWithNavBar<T> method

Future<T?> pushScreenWithNavBar<T>(
  1. BuildContext context,
  2. Widget screen
)

Push a screen with nav bar, using built-in animation

Implementation

Future<T?> pushScreenWithNavBar<T>(BuildContext context, Widget screen) {
  return pushScreen<T>(
    context,
    screen: screen,
    withNavBar: true,
  );
}