Category: Uncategorized
-
How to use custom fonts in Flutter?
In this post, you will learn to use custom fonts in Flutter. We will follow six simple steps for this. Steps to use custom fonts in Flutter: 2. Now, click on “Download family”. 3. Now, create a “fonts” directory at the root of your flutter project. 4. Now, you will extract the zip file that […]
-
Save image to local storage – Flutter
In this post, you will learn to save images to local storage in Flutter. You can either use getApplicationDocumentsDirectory() or getExternalStorageDirectory() according to your need. I will give you examples of both. How to save image in local storage in Flutter? First, we need to add some dependencies to the project’s pubspec.yaml file. Add the […]