moveToSignUpPage method

dynamic moveToSignUpPage(
  1. BuildContext context
)

Implementation

moveToSignUpPage(BuildContext context) async {
  routeStack.add(PageView.signUpView);
  routeStack.refresh();
  printLogs("STACK ROUTES / ${routeStack.toJson()}");
  await Navigator.of(context).push(
    MaterialPageRoute(builder: (context) => SignUpScreen()),
  );

  return;
}