Hans Tan

Dart

A collection of 4 posts
Intro to Flutter Widgets Series (Part 1)
Flutter

Intro to Flutter Widgets Series (Part 1)

Everything in Flutter is a widget. A widget defines how a portion of a screen should look like. Let's take a look at the common UI widgets and how they're used to define how a certain portion of a screen looks like. Text A Text widget allows you to display
— 3 min read
Lists Methods, Properties, and More! (Dart)
Dart

Lists Methods, Properties, and More! (Dart)

The List type is one of the most common data types that you will encounter in Dart; therefore, it is crucial to understand when and how to use the methods and properties of a List. I also highly recommend experimenting them in DartPad. Useful Methods 1. map() The map() method
— 3 min read
Intro to Dart Data Types
Dart

Intro to Dart Data Types

Data types are the building blocks of every programming language. In Dart, a data type is a variable that holds a value. It's very similar to the variables in math. Think about the x variable in math. x can be a representation of a certain value - a number. In
— 3 min read
Installing Flutter in MacOS
Flutter

Installing Flutter in MacOS

What is Flutter? Flutter is an open source framework made by Google. It enables a developer to create native cross-platform apps from a single codebase. This means that you can develop Android, iOS, Web, and Desktop apps at the same time in a single codebase. Flutter is mainly used for
— 3 min read
Hans Tan © 2023
Contact Me