Mobile Smartphones

How to Store key-value pairs In Flutter

You might already know how to read and write data in Flutter, but every now and then we need to store it in a key-value pair. That is why today I’m going to discuss how to store key-value pairs in Flutter. Let’s get started! The shared_preferences plugin can be used to save a small collection …

How to Store key-value pairs In Flutter Read More »

How To Read And Write Files In Flutter

Almost all apps can read and write files into the device’s storage, from desktop apps to mobile apps. That is why today we are going to learn how to read and write files in Flutter, as this is foundational to our learning on this Flutter journey. You may need to read and write files to …

How To Read And Write Files In Flutter Read More »

How to Use Navigation Rail In Flutter

You’ve probably heard of navigation bars and drawer menus, but this one is really similar. It’s known as a navigation rail. Navigation rails provides more comfortable moving between major app destinations. The rail is a side navigation component that displays three to seven app destinations as well as a Floating Action Button if available. The text …

How to Use Navigation Rail In Flutter Read More »

How to Add Menus In Flutter

A menu can be the complete user interface of a system or only a portion of a more sophisticated one. In the same way, menus in Flutter present a list of options on temporary surfaces. When users interact with a button, action, or other control, they appear. Fundamental of Menus In Flutter Naturally, menus should …

How to Add Menus In Flutter Read More »

How to know if your phone has a virus

credits: unsplash.com | Rami Al-zayat Nowadays, knowing how to identify Android and iPhone infections is crucial. Some people may install malicious software on our mobile devices. It’s possible that your phone is draining your bank account, stealing your info, or tracking you. If your phone is functioning strangely, it most likely has a virus. Check …

How to know if your phone has a virus Read More »

How to Use Dividers In Flutter

Do you want to create beautiful material dividers without spending too much time learning new design tools? These Flutter Material Dividers let you easily divide your screen into three areas. This blog is all about how to use dividers in Flutter. Material Design is Google’s official UI style guide that encourages a minimalist approach. It …

How to Use Dividers In Flutter Read More »

How To Use Checkboxes In Flutter

Credit To: Pexels.com | Pixabay A checkbox (also known as a tickbox or tick box) is a graphical widget that allows the user to make a binary choice, that is, a choice between one of two mutually exclusive possibilities. For example, for a simple yes/no question, the user may be required to answer “yes” (checked) …

How To Use Checkboxes In Flutter Read More »

How To Use Material Design Chips In Flutter

You’ve probably unknowingly pressed chips before whenever surfing through the internet, emailing, or using apps. Basically, chips are everywhere, which is why today we will know how to use material chips in flutter. We’ve already covered chips and badges before, but those are external packages. We’re going to cover the material’s chip, which doesn’t require …

How To Use Material Design Chips In Flutter Read More »

Flutter – Navigating in BottomNavigationBar

In today’s blog post I’m focusing in BottomNavigationBar widget on Flutter. I’m going share some codes and how to’s in Flutter with BottomNavigationBar. Let’s get right into it! In my last blog post I made this simple app. But if we try to tap the settings in the BottomNavigationBar widget it doesn’t do anything nor …

Flutter – Navigating in BottomNavigationBar Read More »