Flutter

Sponsored links
Dart and Flutter

Flutter Resize table column by dragging

It's better to make the column width resizable if the text in a DataTable is long. This post explains how to do it without any extra package installation. Watch my sample video to check whether the behavior matches your needs.
Dart and Flutter

Flutter DataTable double tap event on DataRow

DataTable and DataRow don't offer onDoubleTap. How can we implement onDoubleTap event in DataTable widget? You don't have to install another package!
Dart and Flutter

Flutter Date and Time picker without additional dependencies

There are many packages in pub.dev for date time picker but Flutter offers beautiful date and time pickers. We actually ...
Dart and Flutter

Flutter Convert TimeOfDay to 24 hours format

Are you looking for a way to show time in 24 hours format e.g. 13:35? Let's define an extension for TimeOfDay. You can use it everywhere once you define it.
Dart and Flutter

Flutter Apply text style to a target tree

If text style needs to be applied to a Text widget, it's easy to apply but if there are many widgets we don't want to ad...
Dart and Flutter

Flutter Line chart with a great graph tool Fl_Chart

I wanted to show a graph for my application, so I looked for some tools and found a great tool called fl_chart. I tried ...
Dart and Flutter

Flutter Get data from Google Search Console

To keep running a blog, it's necessary to have a tool like Google Search Console for the analysis because I want to coll...
Dart and Flutter

Flutter Keep login state and get Authorization bearer token

I wrote Flutter Google Login with Firebase before but its implementation doesn't keep the login state. The login state i...
Dart and Flutter

Flutter DataTable Cross axis scroll

Do you need to scroll to see all the data in DataTable? It's not necessary to use another package. This post shows how to achieve cross axis scroll and how to show both scrollbars.
Dart and Flutter

Flutter Google sign in for web

The way to sign in from web version is a bit different from Android. I write down some problems that I faced. I hope thi...
Sponsored links