Category Archives: Dart, Flutter

Flutter – Stateless Widget

By | 25/03/2020

In this post, we will see how to create a Stateless Widget and how to use it in a Flutter project.First of all: what is a Stateless Widget?From https://docs-flutter-io.firebaseapp.com:“A widget that does not require mutable state.A stateless widget is a widget that describes part of the user interface by building a constellation of other widgets… Read More »

Flutter – How to install on Mac (Part I)

By | 28/10/2019

From Flutter Official Web Site: “Flutter is Google’s portable UI toolkit for crafting beautiful, natively compiled applications for mobile, web, and desktop from a single codebase. Flutter works with existing code, is used by developers and organizations around the world, and is free and open source.Flutter is different than most other options for building mobile… Read More »

Dart

By | 11/10/2019

Dart is a programming language by Google for developing mobile, desktop, backend and web applications.It is object-oriented with a C-style syntax and it is possible to run Dart code in three way:1) Compiled as Javascript, in order to run in a web browser2) Stand-alone using a Dart Virtual Machine3) Ahead-of-time compiled into machine code. An… Read More »