September 2019
Beginner
512 pages
12h 52m
English
Flutter debugging is based on the Dart Observatory tool. Dart Observatory is present in the Dart SDK and helps with profiling and debugging Dart applications such as Flutter apps.
When a Flutter app is started in debug mode (remember the JIT compilation from Chapter 1, An Introduction to Dart), this tool is automatically run, enabling debugging and profiling on the app. By using the flutter run command, you will have the address:port part of the output after the Hot Reload message. This address is the Observatory UI address; we can access it through many web browsers and this is what it looks like:

Read now
Unlock full access