Tips

How to Create Circle Icon Button In Flutter, 2 best ways

There are many ways to create a circle icon Button in Flutter, but in this tutorial, we’ll cover only the following top 2 approaches: Using the FloatingActionButton Using the ElevatedButton 1. Using the FloatingActionButton (Recommended) The FloatingActionButton is a dedicated widget to create the circular icon button. Creating Basic Button Steps to create a basic circle icon …

How to Create Circle Icon Button In Flutter, 2 best ways Read More »

How to fix postfix/smtp Network is unreachable error

When trying to send email to a gmail account through postfix you can see an error like this in the postfix logs /var/log/maillog : Solution for IPv4  If you want to use IPv4 instead, then you should edit the Postfix configuration file: And change inet_protocols = all to inet_protocols = ipv4 and restart or reload Postfix: Solution for IPv6 …

How to fix postfix/smtp Network is unreachable error Read More »

How to Prevent Data from Being Written on Your Hard Disk Drive using Deep Freeze

Deep Freeze Deep Freeze by Faronics is a reboot-to-restore software application available for the Microsoft Windows and macOS operating systems that allows system administrators to protect the core operating system and configuration files on a workstation or server by restoring the computer to the saved configuration each time the computer is restarted. Implement Deep Freeze …

How to Prevent Data from Being Written on Your Hard Disk Drive using Deep Freeze Read More »

What Is the Best Method for Backing Up My files in Windows?

At some time in their life, everyone loses data. Your computer’s hard drive may fail tomorrow, ransomware could encrypt your information, or a software glitch could wipe your vital documents. If you don’t back up your computer on a regular basis, you risk losing those files for good. Backups, on the other hand, do not …

What Is the Best Method for Backing Up My files in Windows? Read More »

How to Add ListView inside Column in Flutter, 3 different ways

To add the ListView inside Column in Flutter, there are mainly three ways: Using Expanded (Recommended) Using ShrinkWrap Using SizedBox 1. Using Expanded (Recommended) You can wrap your ListView widget inside the Expanded widget and this will allow the ListView to take all the available as long as the Column allows. Note: The main point here is to …

How to Add ListView inside Column in Flutter, 3 different ways Read More »

How to Make a Full desktop Ubuntu OS on Ubuntu Server 20.04 in a Raspberry pi 4

Do you have an Ubuntu Server installed on your Raspberry pi? Do you want to use your CLI-based Ubuntu OS in everyday use as a desktop computer? In this tutorial, I will discuss the steps on how to add GUI to your Ubuntu server. But before I proceed to the procedure, let me explain why …

How to Make a Full desktop Ubuntu OS on Ubuntu Server 20.04 in a Raspberry pi 4 Read More »

How To Improve A Website’s SEO?

SEO stands for search engine optimization. Basically, it means the process of improving your website to increase its visibility when people search for products or services related to your business in Google, Bing, and other search engines. The better visibility your website has, the more likely you are to garner attention and attract prospective and …

How To Improve A Website’s SEO? Read More »

How to set Grey Google Map Style in Flutter

Version 0.5.16 of the google_maps_flutter plugin has arrived and it includes the ability to add a custom style to your map! This article will describe an easy way to style your Google Map in Flutter. The new plugin version adds the setMapStyle method to the GoogleMapController class. This method takes the String representation of your custom style as input. To create …

How to set Grey Google Map Style in Flutter Read More »