Dart and Flutter Flutter File/Folder search with Google Drive API I tried some file search queries to communicate with Google Drive. If you don't know how to connect to Google Drive, che... 2021.12.22 Dart and Flutter
Dart and Flutter Flutter Failed to start DevTools: Dart DevTools exited with code 255 The error described on the title occurred after I updated SDK tools by "sdkmanager --update" command. How to check Log i... 2021.12.21 Dart and Flutter
Dart and Flutter Flutter TabBar and TabBarView without AppBar PageView can handle multiple views on the same screen but I didn't find an easy way to show an indicator that shows wher... 2021.12.20 Dart and Flutter
Dart and Flutter Flutter Upload data to Google Drive We implemented Google login in the previous post. If you haven't checked the post yet, go to the following post first to... 2021.12.17 Dart and Flutter
Dart and Flutter Flutter Google Login with Firebase I tried Google login from a Flutter application because Android users have Google account and it is easier for a user to... 2021.12.15 Dart and Flutter
Dart and Flutter Flutter Swipe list item to delete It's common to let a user swipe a list item for more options in smartphone applications. For example, we can archive an ... 2021.12.10 Dart and Flutter
Dart and Flutter Flutter Loading next data when reaching the bottom of ListView Many applications have a lazy data loading feature. For example, it loads the first 20 data and if a user scrolls down t... 2021.12.08 Dart and Flutter
Dart and Flutter Flutter Navigator pushReplacement and popUntil Page transition is definitely required for all applications. Flutter offers multiple ways to do it, so I tried to use th... 2021.11.29 Dart and Flutter
Dart and Flutter Flutter How to add Drawer implementation Many apps have a drawer that appears from the left side of the screen. Let's learn how to implement it in Flutter. Minim... 2021.11.24 Dart and Flutter
Dart and Flutter Flutter Dropdown Button hint text and initial value Dropdown is one of the common ways to let a user select an option from a list. Let's learn how to implement it in Flutte... 2021.11.05 Dart and Flutter