Visual Studio Code

What is InkWell in Flutter?

Introduction I A flutter’s material widget is InkWell. It reacts to touch actions done by the user. When the user hits the button, Inkwell will reply. There are several motions available, such as double-tap, long press, tap down, and so on. This widget has several characteristics, which are shown below. We may set the radius …

What is InkWell in Flutter? Read More »

How to Fix ‘Unable to Load Asset’ in Flutter

Displaying predetermined pictures from an assets folder is a must for all mobile applications. Unable to load assets is a message that Flutter occasionally shows. Consequently, we will discover how to fix Unable to load assets in Flutter in this post. To fix the <Unable to Load Asset> error, proceed to the following steps below: …

How to Fix ‘Unable to Load Asset’ in Flutter Read More »

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 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 Access Remote Machine in Visual Studio Code Using SSH

For today’s blog, I will guide you on how you can access any folder on a remote machine using SSH. Once connected to a server, files and folders can be accessed from anywhere on the remote filesystem. Getting Started 1. To begin, you should have a Visual Studio Code. Open, your VS Code then go …

How to Access Remote Machine in Visual Studio Code Using SSH Read More »