dartflutter

How to close Scaffold's drawer after an item tap?


After I tap an item in the Scaffold's drawer I want it to automatically hide itself. How do I do it in Flutter?


Solution

  • Navigator.pop() will pop the Drawer route off the stack and cause it to close.