Category Blog

Why isn’t Pubsec in dart?

image 21

Have you thought about why Pubsec isn’t in dart? Why is it in another language? I was curious today, so I did a little bit of searching. Before we discuss that, Let’s discuss Yaml first. Do you know Yaml stands…

[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 Failed assertion: line 608 pos 12: ‘_refresherState == null’ The issue was using one refreshController to multiple SmartRefresher. The solution was quite…

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…

Flutter: How to Hide Keyboard on iPhone & Android

Flutter Hide Keyboard on Iphone Android

One of the most common issues flutters users face while developing mobile apps is the keyboard. After the Keyboard pops up, it is important to dismiss it because it takes up around half the area on the screen. Related: Login/Register…