Dart and Flutter Waiting for another flutter command to release the startup lock… I opened VSCode and tried to start a mobile emulator but the device list didn't appear on the command palette. I ran Run... 2021.10.05 Dart and Flutter
JavaScript/TypeScript How to write annoying unit tests A unit test should be clear enough. To make it concise, the tests are refactored. It looks good at first but some of them trouble us as the software grows. Let's understand those ways to cause problems. 2021.10.04 JavaScript/TypeScript
JavaScript/TypeScript TypeScript How to refactor a function to use named parameters TypeScript and JavasScript don't offer named parameters. How can we do a similar thing? Is there are any to refactor the code to apply the technique? 2021.10.01 JavaScript/TypeScript
Dart and Flutter Flutter Scrolling while dragging an item Drag and drop are often used when we want to move an item. If the list is long it's necessary to be scrollable while dra... 2021.09.29 Dart and Flutter
Dart and Flutter Flutter How to write unit test for thrown exception I didn't know how to write unit test for a function that throws an exception. Therefore. I looked into the solution and ... 2021.09.27 Dart and Flutter
Dart and Flutter Dart Compare two objects – how to deep equal This article explains how to compare two objects in Dart. How can we implement if we want to do deep equal? What is the good way to override hashCode and == operator? 2021.09.24 Dart and Flutter
Dart and Flutter Flutter Provider example ChangeNotifierProvider and Consumer I have used only setState in order to update the view but I faced a problem while I developed my own package grouped exp... 2021.09.20 Dart and Flutter
Dart and Flutter Flutter Draggable Expansion Tile When we want to make a widget draggable, Draggable class is useful and easy to to use. An Expansion Tile has children. H... 2021.09.14 Dart and Flutter
Dart and Flutter Flutter Dynamic expansion tile for group data I needed a expansion tile for grouping data. I wanted to show item list like a folder structure on VS Code. Top parents ... 2021.09.12 Dart and Flutter
Dart and Flutter Build error after upgrading Flutter When I upgraded Flutter from 2.2.3 to 2.5.0 debug console showed a lot of build errors. I didn't understand what caused ... 2021.09.10 Dart and Flutter