'Flutter go to another page with GetX using BottomAppBar

I try go to another page using bottom app bar button with code under onPressed like this:

     TextButton(
          onPressed: () {
            Get.toNamed('/Register');
          },
          child: const Text("REGISTER"));

But nothing is changed, page is not refreshed. Why? How to do it?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source