Reputation: 1592
During execution, is there a way for the developer to see the state of the Navigator stack?
I am using Visual Studio Code and Android Studio.
For instance:
Navigator
RouteA
RouteB
RouteD
etc.
Upvotes: 37
Views: 13224
Reputation: 4866
Following steps:
Set a breakpoint where you want to inspect, which must be inside a builder
function which has context
, and run in Debug mode
Run your app to the break point
In my example, you can see there are 2 routes in the history, with all relevant debuggable data.
Hope it helps
Upvotes: 38