Tag 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 – Stateless Widget »

Flutter – How to install on Mac (Part III)

By | 11/11/2019

Flutter – How to install on Mac (Part I)Flutter – How to install on Mac (Part II) In this last Flutter’s installation’s post, we will see how to install and use the Android simulator. We open Android Studio an we select Tool/ADV Manager: then, we push on “Create Virtual Device” button: Now, we choice a… Read More: Flutter – How to install on Mac (Part III) »

Flutter – How to install on Mac (Part II)

By | 06/11/2019

Flutter – How to install on Mac (Part I) Now, we open a browser, go to https://developer.android.com/studio, download the last version of Android Studio and then we install it: After the installation, we run Android Studio, open Preferences and then we install the Flutter plug-in: Finally, we restart Android Studio: Now, if we run Android… Read More: Flutter – How to install on Mac (Part II) »

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: Flutter – How to install on Mac (Part I) »

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: Dart »