Beginning Flutter Debugging

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

Part 1: Beginning Flutter Debugging

5. Debug a Simple Problem

Episode complete

Play next episode

Next
About this episode
See versions
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 4. Understand the Call Stack Next episode: 6. Debug with Android Studio

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

Take your career further with a Kodeco Pro subscription. 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.

This video Debug a Simple Problem was last updated on Jan 18 2022

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

In this episode, we’ll put all we’ve learnt to find and solve a simple bug. In here, we have a basic calculator app that adds two numbers. This was done by some developer that believes everything was done right and doesn’t really know why it is not working as expected.

double sum;
sum = double.parse(_num1Controller.text) +
                      double.parse(_num2Controller.text)