skip to Main Content

enter image description here
the next and skip buttons are not working
enter image description here

Is anyone knows what the issue?

2

Answers


  1. Try wrapping your button in a GestureDetector widget and for the onTap: property specify to go your next screen (using page route or navigator).

    Login or Signup to reply.
  2. you can use GestureDetector or Inkwell onTap property and can use this func

     Navigator.push(
                                context,
                                MaterialPageRoute(
                                  builder: (context) => nextPage(
                                  // next page variable if have
                                  ),
                                ),
                              );
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search