Course Overview
In this course you will learn the basics of Flutter by working through hands on examples
Read Full Article45 articles tagged with "flutter"
In this course you will learn the basics of Flutter by working through hands on examples
Read Full ArticleConfigure your local workspace to code flutter
Create and run your first Flutter application
TEXT & IMAGES
Edit
In this module, we will cover the various files and folders created β¦
In this step you will include a dependency on an external package. There are multiple ways to locate, β¦
Now that you’ve reviewed whats happening in lib/main.dart
add a β¦
Understanding State Stateful Widget Concepts
In this section you will:
Riverpod is a reactive caching and data-binding framework for Flutter and Dart applications. β¦
Local state - State that can be contained within a single widget. Local or ephemeral state. setState & Stateful β¦
Rounded Corners
Container(
decoration: BoxDecoration(
borderRadius: β¦
To make a local executable for mac:
From the terminal type flutter build macos
The app is create β¦
I was building a app testing firestore and hapened to be using MacOS β¦
This example explores the use of HiveDB for local storage in dart & flutter β¦
This example loads a sample dataset from a file and displays a random entry β¦
This example demonstrates how to sort a List of items.
Given a list of users β¦
This example explores playing youtube videos inside flutter apps.
The package β¦
To get a subset of items from a List in flutter you can use the List.where() β¦
This repo demonstrates using the repository pattern for layering your β¦
This example implements the common use case of displaying a ListView β¦
Renaming the Application Package & BundleID after project creation
Setting up new Flutter from the command line
Related
TABLE file.cday as Created, file.mday as Modified
where contains(file.outlinks, this.file.link)
SORT file.mday β¦
class Person {
final String first;
final String last;
final String email;
Person : β¦
flutter create todo
flutter create --org run.cgrant todo
Had issues getting Flutter to connect to firebase. Had some Cocoapods issues. This seems to be a M1 Mac issue
Found a β¦
the main.dart file executes the app with the following convention
void main() => runApp(MyApp());
MyApp() β¦
[[../../../_notes/code/Flutter]]
Make sure you’ve configured your project using β¦
title: Flutter - Creating Packages and reuseable modules tags: [flutter]
how to create packages for reuse across β¦
Before getting into the coding lets refresh on the core concepts
It used to be somewhat challenging to configure [[Firebase]] and [[../../../_notes/code/Flutter]]. Now β¦
First add the dependency
open the file pubspec.yaml
and add the dependency for cloud_firestore β¦
Google sign in on ios crashes for me
this was a good thread https://github.com/flutter/flutter/issues/44564
As β¦
Once you review this, go look at [Freezed](https://pub.dev/packages/freezed) to simlify creation with generated classes β¦
Utilize a lib/models
folder for your classes
Utilize initializer lists
for simple setters β¦
Files can reference each other with standard paths following the package name.
Assuming the β¦
[[../../../_notes/code/Flutter]]
First add the dependency
open the fileΒ pubspec.yaml
Β and β¦
[[../../../_notes/code/Flutter]]
Google sign in on ios crashes for me
this was a good β¦
You forgot everything again didn’t you π
OK let’s try to get you back up to speed β¦
Google sign in on ios crashes for me
[[../../../_notes/code/Flutter]]
this was a good thread β¦