Code

Flutter - State Management

July 27, 2022

Local state - State that can be contained within a single widget. Local or ephemeral state. setState & Stateful widget. State that only effects a …

Flutter - MacOS Build

April 24, 2022

Flutter - MacOS Build

To make a local executable for mac:

From the terminal type flutter build macos

The app is create under: …

Flutter - Code Basics

January 1, 0001

Code Basics

the main.dart file executes the app with the following convention

void main() => runApp(MyApp());

MyApp() is a class that extends …

Flutter - Firebase Setup

January 1, 0001

Getting started

It used to be somewhat challenging to configure [[Firebase]] and [[../../../_notes/code/Flutter]]. Now though they’ve provided a …

Flutter - Model Conventions

January 1, 0001

Once you review this, go look at [Freezed](https://pub.dev/packages/freezed) to simlify creation with generated classes

Utilize a lib/models folder …

Flutter - Model Conventions

January 1, 0001

Flutter Model Conventions

Utilize a lib/models folder for your classes Utilize initializer lists for simple setters instead of full constructors …

Flutter Home

January 1, 0001

Flutter Development

You forgot everything again didn’t you 🙂

OK let’s try to get you back up to speed quicker this time.

Go through the …