How to Fetch Data from Internet? Flutter Tutorial

fetch data from internet flutter

Hey Guys, In this article I will teach you how to fetch data from the internet in Flutter. We will be using the HTTP package to get the data from the API and then get the required data by decoding the response in JSON format. I have also made a Speed coding video showing the … Read more

[Solved] Don’t use one refreshController to multiple SmartRefresher

SmartRefresher

Don’t use one refreshController to multiple SmartRefresher, It will cause some unexpected bugs mostly in TabBarView ‘package:pull_to_refresh/src/smart_refresher.dart’: package:pull_to_refresh/src/smart_refresher.dart:1 Failed assertion: line 608 pos 12: ‘_refresherState == null’ The issue was using one refreshController to multiple SmartRefresher. The solution was quite simple: i.e Define another instance for another smart refresher. However, my attention was focused on … Read more

Flutter Error: The Android Gradle plugin supports only kotlin-android-extensions Gradle plugin version 1.6.20 and higher

image 2023 02 06 145353431

This is a new flutter error I recently came across and wasn’t able to find solutions in Stack Overflow or other forums and sites. What was the problem? As you can see above, the package info plus package have a Kotlin version 1.6.10, however, the required version for the program to run was 1.6.20 and … Read more

Git Worktrees: Why would you use it?

Untitled 1 1

Whenever you are developing something, context switching is something we all come across. Lucky for us there are multiple ways one can achieve this, even with in Git. Here we will be looking at one of the most useful tool for this, Git Worktree. Table of Contents: When to use Git Worktrees? How does Git … Read more

Getting Started with Blender: Introduction | Easy Tutorials For Beginners

final

One-Page Notes: Blender Ch 1: What am I looking at? So you booted up Blender, a free 3D modeling program on par with most paid programs today, thinking you are about to be a hotshot in the 3D modeling world. Well…you might just be. But first, you’ll need some guidance. As a fellow student of … Read more

Creating a QRCode scanner with Swift | Swift Tutorial

qr code scanner with swift ui

Creating a QRCode scanner in iOS in Swift We can build a QRCode scanner in iOS very easily using the AVFoundation library provided to us by Apple. It is a very powerful tool to manipulate the Audio and Video capability of the device.  But today we’ll only be using the MetaDataObject api to detect QRCode … Read more