pushScreenWithNavBar<T> method
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,
);
}