Flutter

Customize Borders of TextField/TextFormField in Flutter

Updated: February 3, 2023 By: Pennywise

This short article walks you through a few examples of customizing the borders of a TextField (or TextFormField) widget in Flutter. Without any further ado, let’s get started. Example 1: TextField enabledBorder and focusedBorder This sample…

Flutter TextField: Styling labelText, hintText, and errorText

Updated: February 3, 2023 By: Pennywise

This short and concise article shows you how to style the label text, hint text, and error text of a TextField (or TextFormField) widget in Flutter. Note: Everything in the following examples is the same if…

How to set width, height, and padding of TextField in Flutter

Updated: February 3, 2023 By: Pennywise

This article shows you how to set the width, height, and inner padding of a TextField widget in Flutter. Setting the width of a TextField You can set the width of a TextField exactly as you…

Most Popular Packages for State Management in Flutter (updated)

Updated: March 6, 2024 By: Guest Contributor

This article lists the most popular packages used for state management in Flutter applications that contain multiple screens. The top 2 criteria for us to include a package on this list are the number of stars…

How to check your Flutter and Dart versions

Updated: March 31, 2023 By: A Goodman

This short article is about checking Flutter SDK and Dart SDK versions that are installed on your computer. In addition, you’ll also learn how to upgrade your Flutter SDK, find out which Flutter channel is being…

Understanding Typedefs (Type Aliases) in Dart and Flutter

Updated: March 31, 2023 By: Pennywise

Flutter and Dart have gotten better and more popular recently. Many new features and improvements have been added. In this article, we’ll explore typedefs in Dart (also known as type aliases) and go through a few…

How to Add a Drop Shadow to Text in Flutter

Updated: April 23, 2023 By: Pennywise

Shadow effects for text are increasingly used in web and mobile applications, aiming to enhance the user experience. In this article, you’ll learn how to add shadow effects to Text widgets in Flutter through some instructions…

Flutter: Make Text Clickable like Hyperlinks on the Web

Updated: May 18, 2023 By: A Goodman

If you have worked a bit with HTML and web frontend then you should be not unfamiliar with hyperlinks, which are added with <a> tags and are clickable to perform some action like opening a URL,…

Flutter error: CocoaPods’s specs repository is too out-of-date

Updated: January 13, 2023 By: A Goodman

This article is about an error you may encounter when developing a Flutter application for iOS devices. Problem The error often occurs when you use one or many packages related to Firebase, like cloud_firestore, firebase_analytics, firebase_auth,…

Flutter: Configure Firebase for iOS and Android

Updated: March 6, 2024 By: A Goodman

This article shows you how to configure Firebase SDK for a Flutter project and fix some common errors you may run into when working with this stuff. We will use the most recent versions of Flutter…

Flutter and Firestore Database: CRUD example

Updated: March 6, 2024 By: A Goodman

This article covers the most important aspects you need to know when working with Flutter and Firebase Firestore. We will walk through the basics of Firestore, and later, we will build a complete application that lets…

Working with Time Picker in Flutter (updated)

Updated: January 18, 2023 By: A Goodman

This is a deep dive into time pickers in Flutter. We will explore the showTimePicker function, its parameters, and how to handle the returned result. Next, we will study an example of how to implement a…

1 20 21 22 23 24 41