Flutter

Sponsored links
Dart and Flutter

Flutter How to create a circular color picker

There could be some packages that provide a circular color picker but I wanted to understand how it's implemented, so I ...
Dart and Flutter

Flutter How to apply gradient color background

To create a beautiful app, a gradient color background could be a good way to implement it. Let's see how to implement i...
Dart and Flutter

Flutter How to implement Bloc like pattern with Riverpod

Do you want to move from Bloc pattern with flutter_bloc to Riverpod? Then, let's go through with me. I implemented the same application in both.
Dart and Flutter

Flutter Separate UI and business Logic by Bloc Pattern

Code segregation is important for clean code. UI part should be separated from Business Logic. Bloc pattern is one of the solutions in Flutter. Let's learn how to implement it.
Dart and Flutter

Flutter Freezed autogenerates code for copyWith, serialization, and equal

Some methods need to be overridden for a data class to copy, compare, and convert from/to JSON. Freezed package auto generates those codes from a simple class definition. Let's try to use it.
Dart and Flutter

I struggled with releasing a Flutter Desktop app

I tried to create a release for a Flutter Desktop application but it was not straightforward... I created a release for ...
Dart and Flutter

Flutter Select rows on DataTable with the control/shift key

It's typical behavior that the multiple rows can be selected by the control key or shift key on a Desktop application. How can we implement it in Flutter? Use KeyboardListener to detect the key event. Then, control the selection depending on whether the key is being pressed or not.
Dart and Flutter

Flutter How to delete a row on DataTable by Delete button

When showing data on DataTable, we might want to have a feature that deletes selected rows by pressing a Delete key. How is it possible? Use KeyboardListener.I will show you where to put the widget and how to use it in this post.
Dart and Flutter

Flutter How to show selected area on Slider

How can we show the selected area on a slider widget? Using Stack is one of the solutions but it's necessary to consider the padding value to show the selected area accurately. Let's learn how to do it!
Dart and Flutter

Flutter How to get widget height, width, x, and y position

If the size and position of a widget need to be automatically determined by the Framework, a variable can't be used to know them for another widget. How can we get the width, height, x, and y positions in this case? Use GlobalKey.
Sponsored links