Programming

How to Make Adaptive Apps In Flutter

Image credit to: Louie Jay Lomibao Today’s topic is about how to make adaptive apps in Flutter. Fundamentally, adaptive and responsive design are two techniques for designing for a wide range of devices. In its most basic form, responsive design employs a single layout and adjusts the page’s text, navigation, and elements to match the …

How to Make Adaptive Apps In Flutter Read More »

How to Downgrade Flutter Versions

Today’s topic is about how to downgrade flutter versions. There are a lot of incompatibility problems, or perhaps we want to use other specific versions of Flutter. That is why I am going to address such problems and needs. To be specific, this blog post won’t just teach you how to downgrade flutter versions but …

How to Downgrade Flutter Versions Read More »

How to Create your First App in Android Studio using Java

Android Studio is the official integrated development environment for Google’s Android operating system, built on JetBrains’ IntelliJ IDEA software and designed specifically for Android development. Today, I will show you how you can create your first app in Android Studio. Step 1. Open Android Studio, then click on new project. Step 2. Click on phone …

How to Create your First App in Android Studio using Java Read More »

How to Use Data Tables In Flutter

In today’s blog we’re going to learn how to use data tables in Flutter. The particular conventions and vocabulary used to describe tables differ depending on the situation. Tables also range greatly in terms of variety, structure, flexibility, terminology, representation, and use. Although we have already covered how to use a table here, this one …

How to Use Data Tables In Flutter Read More »

How to Add LayoutBuilder In Flutter

At layout time in Flutter, the framework runs the builder function and supplies the parent widget’s constraints. The LayoutBuilder Widget’s ultimate size will be the same as that of its child. The LayoutBuilder in Flutter is an unavoidable widget to be used if we want to build apps that are highly responsive. Pulsation automated testing …

How to Add LayoutBuilder In Flutter Read More »

How Add Bottom App Bars In Flutter

A Bottom App Bar, unlike the common Top App Bar, has a difference in how it is implemented. The top app bar displays content and actions that are relevant to the current screen. It is suitable for branding, screen titles, navigation, and activities. The bar can also be transformed into a contextual action bar, displaying …

How Add Bottom App Bars 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 »