flutter

Flutter – The use of Selector in Provider package

When it comes to state management in Flutter, most of the time people prefer to use Provider.  A package that is most...
flutter

Flutter Hooks – scratching the surface

With previous experience working with React, moving to Flutter, hooks are things that I feel missing the most. Hooks help a lot...

getElementByID and getElementsByTagName in DOM manipulation

DOM manipulation is a skill set that every web developer must know about. With DOM manipulation, we can access the DOM and change the...

Set up a localhost and make a web page using MAMP and PHP

By the current time, MAMP had released a version for Windows. This helps Windows users have one more option set up an Apache localhost...

Write and read an ArrayList object to a file in Java

Today, we will get to know how to write an ArrayList object to a file and then load the object back to the Java program...

Introducing querySelector and querySelectorAll

Comparing with getElementById, getElementByName,... querySelector and querySelectorAll are newcomers but soon become popular regarding their conveniences and consistent of using. How to use querySelector and querySelectorAll? With querySelector...
flutter

Introduction of fetching_state package

This package is inspired by the Union type provided by freezed package. But sometimes, it could be too complicating or you join...

Overriding equals() method in Java

Comparing is something that you would do a lot in programming. It's easy in Java to compare primitive variable using double equals...

Create a bar chart with react hooks and SVG

The post today is about making a dynamic bar chart with random auto-generated data. React with hooks and the use of SVG...
flutter

Make a gradient button in Flutter

Gradient is coming back as a trend in UI design, I once have to create a button with a gradient background. Thanks...