moveToPhonePage method

dynamic moveToPhonePage(
  1. BuildContext context
)

Implementation

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

  return;
}