Left Sidebar
Flutter SQLite CRUD Example — Learn Local Database with Ease Introduction When building Flutter apps, sometimes you don’t need a cloud database like Firebase. Instead, a local li…
Publishing a Flutter App on Playstore
Publishing a Flutter App on Playstore App live on Playstore Create a new Flutter App on Android Studio. Pay special attention to the Organization. This is the prefix by which your App is recognized i…
Understanding Cubits --- A basic working Cubit
A Cubit is a Flutter Class that provides an alternate and better method of state management to the setState method. It provides a system of state management that separates business logic from state m…
Calling the Weather API
🌦️ Using the Weather API in Flutter Introduction and Importance Weather apps are one of the most common beginner-friendly projects in mobile development. Learning to call APIs, decode JSON, and …
Cubit in a UI
Continuing from our basic introduction to Cubits where we used a cubit to manage state, we will now use a cubit in a UI. In case you haven't read the starting post please go and read this up. Sta…
Quiz App with downloaded questions
A simple True False Quiz Program built in Flutter. We get the questions from a JSON file stored in a gist in few days time. Git Repository for this App The JSON File Contact us for softwar…
Flutter Navigation
Navigation in Flutter. Navigating from one Flutter page to others and back In this application we have three pages VsjOne, VsjTwo and VsjThree. We begin by defining three routes in main itself. void…
Quiz App
A simple True False Quiz Program built in Flutter. The Questions are stored in a local list for now. We will get the questions from a JSON file stored in a gist in few days time. Please try this ou…
Column MainAxisAlignment and CrossAxisAlignment
Column MainAxisAlignment and CrossAxisAlignment. Try this demo app. Contact us for software training, education or development
Row MainAxisAlignment and CrossAxisAlignment
Row MainAxisAlignment and CrossAxisAlignment. Main Axis and Cross Axis Alignment refer to the arrangement of components in a row or column in Flutter Layout. In this app we will discuss placements i…