Flutter

[Local RDB] Fast! An Overview and How to Use Drift!!

アプリの設計において、特定のデータを永久的に保存する必要があります。その際にユーザーのスマホ内に作成されるローカルDBを設計します。先日はIsarをご紹介しましたが、Isarは更新頻度が低く不安定です。そこで今回は、Isarにも負けず高速なRDBのDriftについて紹介します。
Firebase

[Easy Guide] Connecting Your Flutter App to Firebase!!

In this article, I will show you the steps to use FireBase in your Flutter application. I say it's easy, but there were a few points that were tricky, so I hope this will be helpful. Basically, we are following the official instructions below.
Flutter

[Easy] Reorderable List with ReorderableListView and Its Properties

When you are creating a list in ListView, do you ever want to add a reordering feature? ReorderableListView is a widget in Flutter that allows users to reorder list items by dragging and dropping them.In this article, we will introduce ReorderableListView, a list with reordering functionality.
Flutter

[Standard] How to Use ListView.builder for Optimal List Display

In Flutter, ListView.builder is used to create dynamically generated scrollable lists. In this article, we will show you how to use ListView.builder.
Flutter

【Local DB】Introducing Isar Class Definitions and Data Manipulation Methods!!

In this issue, we will introduce more detailed Isar class definitions and data manipulation methods.We hope it will be helpful for your development!
Flutter

What is Flutter’s pubspec.yaml? Introduction to Its Meaning and Usage!

The "pubspec.yaml" is the configuration file for the Flutter project,It contains the application name, description, version information, and package information on which the project depends,It manages the application name, description, version information, packages the project depends on, the version of those packages, and so on.
Firebase

Has It Finally Arrived? Full-Text Search (Vector Search) in Firestore

Firestore enables full-text search (vector search) without using third-party tools. In this issue, we will introduce the detailed procedure.
Flutter

What is MVVM? An easy-to-understand explanation!

What is MVVM (Model-View-ViewModel),Separate the application logic and UI (user interface),MVVM (Model-View-ViewModel) is a software design method that aims to improve development efficiency and maintainability by separating the application logic and UI (user interface).It is one of the methods to design for each role such as "screen display," "data manipulation," and "data definition.MVC is a similar approach.Translated with www.DeepL.com/Translator (free version)
Flutter

What is Riverpod, Flutter’s most major state management!

StatefulWidget," introduced previously, is another function that manages states,When implementing an application with multiple screens and functions, the number of states to manage increases and management becomes difficult.Riverpod is a wonderful package that makes such state management easy.In this article, we will discuss Riverpod.
Error

[Error Handling] How to Resolve “The Flutter SDK is installed in a protected folder and may not function correctly”

What to do when VS Code says "The Flutter SDK is installed in a protected folder and may not function correctly