Flutter

How to add Screenshots/Images in Your Readme.md File straight to Github

Introduction Github has become the platform where most open-source code is shared as the world is pushing more and more towards open-source projects and code. When sharing your code with the world, a problem that might occur is that they may not particularly understand how to use it or even understand it. So that is …

How to add Screenshots/Images in Your Readme.md File straight to Github Read More »

Flutter 2 vs. Flutter 3: What Can We Expect From Flutter in the Future?

What is Flutter? Flutter is a cross-platform software development kit (SDK) for mobile app development. Flutter used the Dart programming language to make apps for Android and iOS devices. Because it is cross-platform, it allows for the creation of apps with a native appearance and feels on both Android and iOS devices using a single …

Flutter 2 vs. Flutter 3: What Can We Expect From Flutter in the Future? Read More »

How to Add Images in Flutter (2022 Version)

Introduction: Flutter apps can include both code and assets (sometimes called resources). An asset is a file that is bundled and deployed with your app, and is accessible at runtime. Common types of assets include static data (for example, JSON files), configuration files, icons, and images (JPEG, WebP, GIF, animated WebP/GIF, PNG, BMP, and WBMP). Add Image …

How to Add Images in Flutter (2022 Version) Read More »

How to Use Gradient Screen Color in Flutter

What is Gradient Color gradients take a starting color and position and an ending color and position. Then it performs a transition between the colors. With consideration of color theory, they can make an application more visually interesting than a plain design. A gradient creates visual interest and helps move users through a design. The eye will …

How to Use Gradient Screen Color in Flutter Read More »

How to Generate KeyStore in Flutter | Visual Studio Code

What is a KeyStore? A KeyStore is nothing more than a repository, database, or collection of key pairs, secret keys, or certificates. A KeyStore is referred to as a TrustStore when it simply stores certificates. It is referred to be a KeyStore when Private Keys are included with their accompanying Certificate chain (Key Pair or …

How to Generate KeyStore in Flutter | Visual Studio Code Read More »

How To Hide The File Status Icon As Well As The U And M File Markers In Visual Studio Code

Why use git status? The git status command is used to display the state of the repository and staging area. It allows us to see the tracked, untracked files and changes. This command will not show any commit records or information. Mostly, it is used to display the state between Git Add and Git commit commands. We can check …

How To Hide The File Status Icon As Well As The U And M File Markers In Visual Studio Code Read More »

How to Use WebView In Flutter

In today’s blog post, we’re going to tackle WebView and create a Flutter app project with WebView, but first, what is WebView?  Accordingly, a WebView on the Android framework was based on Blink. On the other hand, on Apple, the framework was based on WebKit. Let’s dive more into it! WebView Origin Blink is a …

How to Use WebView In Flutter Read More »

Internationalizing Your Flutter App

Not all of your users can speak or read English. That is why internationalizing your Flutter app comes into the picture. But what is internationalization? Basically, people who speak a different language cannot understand your app, thus, it must be internationalized. That implies you must develop the app in a style that allows you to localize values …

Internationalizing Your Flutter App Read More »