Kinda Code
Home/Flutter/Page 27

Flutter

Flutter and Dart tutorials, tips & tricks
Using Chip widget in Flutter: Tutorial & Examples

Using Chip widget in Flutter: Tutorial & Examples

Updated: Jan 13, 2023
This article is about the Chip widget in Flutter. We’ll have a glance at the fundamentals of the widget and then walk through a few examples of implementing it in practice. Without any further ado, let’s get......
Create a Custom NumPad (Number Keyboard) in Flutter

Create a Custom NumPad (Number Keyboard) in Flutter

Updated: Jan 12, 2023
Introduction There might be cases where the default soft keyboard on iOS or Android doesn’t fit your need, and it is very frustrating or almost impossible to archive your goal with that thing. Trying to tweak or deep customize......
Flutter: Convert UTC Time to Local Time and Vice Versa

Flutter: Convert UTC Time to Local Time and Vice Versa

Updated: Jan 08, 2023
This short and straightforward article is about converting UTC time to local time and vice versa in Flutter. Without any further ado, let’s get to the point. See Your Current Timezone You can get your current timezone by......
How to implement a Date Range Picker in Flutter

How to implement a Date Range Picker in Flutter

Updated: Jan 08, 2023
Many applications need a date range picker so that the user can filter records of financial transactions, orders, statistical data, or something like that, in a certain period. This article will show you how to implement a date range......
Environment Variables in Flutter: Development & Production

Environment Variables in Flutter: Development & Production

Updated: Jan 08, 2023
This article shows you a couple of different ways to use different configurations for development and production in Flutter. Using the dart.vm.product environment flag You can determine whether your app is currently running in......
How to implement a loading dialog in Flutter

How to implement a loading dialog in Flutter

Updated: Jan 08, 2023
This article shows you how to create a loading dialog from scratch in Flutter. Overview There are many scenarios where you have to perform an asynchronous computation (future), such as making HTTP requests, processing files,......
Flutter StreamBuilder: Tutorial & Examples (Updated)

Flutter StreamBuilder: Tutorial & Examples (Updated)

Updated: Jan 08, 2023
The StreamBuilder widget is used in many kinds of Flutter applications, especially chat applications, social networks, real-time content updates, etc. In this article, we will go over 2 complete examples of implementing StreamBuilder: the......
Hero Widget in Flutter: Tutorial & Example

Hero Widget in Flutter: Tutorial & Example

Updated: Jan 05, 2023
This article is about the Hero widget and hero animations in Flutter. We’ll have a glance at the essence of those things and then examine a complete example of using them in practice. The TL;DR In simple words, a hero......
Working with dynamic Checkboxes in Flutter

Working with dynamic Checkboxes in Flutter

Updated: Oct 11, 2022
When developing real-world applications, you often have to work with dynamic data retrieved from servers or databases. There will be cases where you need to deal with a list where each item in the list will come with a checkbox that......
Live Email Validation in Flutter (Validate while Typing)

Live Email Validation in Flutter (Validate while Typing)

Updated: Oct 11, 2022
In this article, we’ll build a small Flutter app to demonstrate how to validate email while the user is typing. This will help him or her quickly identifies if there is a typo or mistake going on. Here’s what you’ll see......
2 Ways to Add Multiple Floating Buttons in Flutter (updated)

2 Ways to Add Multiple Floating Buttons in Flutter (updated)

Updated: Oct 11, 2022
When building websites and mobile apps, there will be some cases where it is desirable to deploy more than one floating action button on one screen, such as a pair of Next/Previous buttons, several share buttons, several quick action......
A Complete Guide to Underlining Text in Flutter (4 examples)

A Complete Guide to Underlining Text in Flutter (4 examples)

Updated: Oct 11, 2022
When building websites or mobile apps, there will be occasions when you want to create underlined text with the aim of making it stand out from other text, such as links, certain sentences or words. special language to emphasize,......