pushScreenWithoutNavBar<T> method
Push a screen without nav bar, using built-in animation
Implementation
Future<T?> pushScreenWithoutNavBar<T>(BuildContext context, Widget screen) {
return pushScreen<T>(
context,
screen: screen,
withNavBar: false,
);
}