Flutter

Flutter: Customizing the TextField’s Underline

Updated: April 23, 2023 By: Pennywise

In Flutter, you can customize the color, thickness, and style (actually, there are only 2 stypes for underline: solid and none) of a TextFIeld’s underline by using the parameters from the InputDecoration class listed below: The…

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

Updated: October 11, 2022 By: A Goodman

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…

How to disable Web and Desktop support in Flutter

Updated: April 23, 2023 By: Pennywise

If your goal with Flutter is just to build apps for Android and iOS, then you can disable web and desktop-related things. This makes your projects a little cleaner and lighter. Solution Web In order to…

Flutter + Firebase Storage: Upload, Retrieve, and Delete files

Updated: April 19, 2023 By: A Goodman

This is a detailed and easy-to-understand guide to working with Flutter and Firebase Storage. We will build an app with common functionality like uploading images, displaying uploaded images from Firebase Storage in a ListView, and deleting…

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

Updated: October 11, 2022 By: A Goodman

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,…

How to create a Filter/Search ListView in Flutter

Updated: March 6, 2024 By: A Goodman

This article is about making a filter/search ListView in Flutter. We will take a quick look at the approach to get the job done and then go through a concrete and complete example of applying that…

How to create Blur Effects in Flutter

Updated: March 6, 2024 By: A Goodman

This article shows you how to create blur effects in Flutter. We’ll go through 2 complete examples. The first example makes a blurred background image and the second one, a little bit more complex and longer,…

Flutter: 2 Ways to Create Gradient Background Buttons

Updated: April 23, 2023 By: A Goodman

This article shows you a few ways to create buttons with gradient background colors in Flutter without causing side effects like missing ripple effects or producing unwanted borders. We’ll walk through 2 different examples. The first…

Flutter: Make a TextField Read-Only or Disabled

Updated: April 23, 2023 By: A Goodman

This article shows you how to make a TextFiled read-only or disabled in Flutter. Overview If a TextField is disabled, it can not be focused and ignores taps. We can control whether a TextField is disabled…

Flutter: Adding a Clear Button to a TextField

Updated: February 11, 2023 By: A Goodman

This article shows you how to add a clear button to a TextField in a Flutter application so that a user can quickly remove the text he or she has entered. What is the point? We’ll…

Flutter: Add a Character Counter to TextField

Updated: April 23, 2023 By: Alexandros

This article shows you how to add a custom character counter to a TextField (you can also use TextFormField as well) in Flutter. Overview Here’s the main points: 1. We will display the number of characters…

Flutter & Dart: Get File Name and Extension from Path/URL

Updated: April 22, 2023 By: Pennywise

This article shows you how to retrieve the name and extension of a file from a file path or a web URL in Dart (and Flutter as well). In order to get the job done, we…

1 19 20 21 22 23 41