Beginning Flutter Debugging

Jan 18 2022 · Dart 2.14, Flutter 2.5, VS Code 1.62 OR Android Studio

Part 1: Beginning Flutter Debugging

07. Get a Tour of Dart DevTools

Episode complete

Play next episode

Next
About this episode
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 06. Debug with Android Studio Next episode: 08. Debug Common Layout Issues

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Notes: 07. Get a Tour of Dart DevTools

DevTools was opened on a different browser and the base url was copied and pasted in Firefox. The original url had some parameters which were unintentionally left out. The correct url should be something like this: http://127.0.0.1:9101/#/?hide=debugger&ide=VSCode. So take note of this if you intend copying the url to another browser.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

Dart Devtools is a tool that provides different utilities for debugging and monitoring our apps. It runs in a browser and also inside VSCode and Android Studio thanks to the Flutter plugin.

import 'dart:developer' as dev;
...
onTapped: () {
  // After setstate()
...
  dev.log("Some long message");