From 16d1745e2d8035f6ef0ef2a970a8a3d218b57226 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 12:49:36 +0100 Subject: [PATCH 01/35] README.md template added --- ch17/README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 ch17/README.md diff --git a/ch17/README.md b/ch17/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch17/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) From 5623f34e6bdfc58e8a6b3d273284248595343177 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 12:50:32 +0100 Subject: [PATCH 02/35] README.md template added --- ch03/README.md | 22 ++++++++++++++++++++++ ch04/README.md | 22 ++++++++++++++++++++++ ch05/README.md | 22 ++++++++++++++++++++++ ch06/README.md | 22 ++++++++++++++++++++++ ch07/README.md | 22 ++++++++++++++++++++++ ch08/README.md | 22 ++++++++++++++++++++++ ch09/README.md | 22 ++++++++++++++++++++++ ch10/README.md | 22 ++++++++++++++++++++++ ch11/README.md | 22 ++++++++++++++++++++++ ch12/README.md | 22 ++++++++++++++++++++++ ch13/README.md | 22 ++++++++++++++++++++++ ch14/README.md | 22 ++++++++++++++++++++++ ch15/README.md | 22 ++++++++++++++++++++++ ch16/README.md | 22 ++++++++++++++++++++++ 14 files changed, 308 insertions(+) create mode 100644 ch03/README.md create mode 100644 ch04/README.md create mode 100644 ch05/README.md create mode 100644 ch06/README.md create mode 100644 ch07/README.md create mode 100644 ch08/README.md create mode 100644 ch09/README.md create mode 100644 ch10/README.md create mode 100644 ch11/README.md create mode 100644 ch12/README.md create mode 100644 ch13/README.md create mode 100644 ch14/README.md create mode 100644 ch15/README.md create mode 100644 ch16/README.md diff --git a/ch03/README.md b/ch03/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch03/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) diff --git a/ch04/README.md b/ch04/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch04/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) diff --git a/ch05/README.md b/ch05/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch05/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) diff --git a/ch06/README.md b/ch06/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch06/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) diff --git a/ch07/README.md b/ch07/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch07/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) diff --git a/ch08/README.md b/ch08/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch08/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) diff --git a/ch09/README.md b/ch09/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch09/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) diff --git a/ch10/README.md b/ch10/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch10/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) diff --git a/ch11/README.md b/ch11/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch11/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) diff --git a/ch12/README.md b/ch12/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch12/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) diff --git a/ch13/README.md b/ch13/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch13/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) diff --git a/ch14/README.md b/ch14/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch14/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) diff --git a/ch15/README.md b/ch15/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch15/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) diff --git a/ch16/README.md b/ch16/README.md new file mode 100644 index 0000000..a803e26 --- /dev/null +++ b/ch16/README.md @@ -0,0 +1,22 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) +- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) +- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) +- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) +- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) +- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) +- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) +- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) +- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) +- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) From c1515e9073006a43d318ea4b3ec016120ad97d89 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 13:25:19 +0100 Subject: [PATCH 03/35] chapter links updated --- ch01/README.md | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/ch01/README.md b/ch01/README.md index 885ee5e..52b35e9 100644 --- a/ch01/README.md +++ b/ch01/README.md @@ -8,14 +8,12 @@ Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook ## Dart Essentials I -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [1.1 How to install the Dart SDK](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-2.md) +- [x] [1.3 Extending Android Studio to support Dart](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-3.md +- [x] [1.4 Developing with VS Code](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-4.md) +- [x] [1.5 Installing the Dart SDK](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-5.md) +- [x] [1.6 Running a Dart application](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-6.md) +- [x] [1.7 Selecting a release channel](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-7.md) + + From 166e9d31187dc472acd30dc49e13ecd124c01c09 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 13:51:21 +0100 Subject: [PATCH 04/35] chapter links updated --- ch02/README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ch02/README.md diff --git a/ch02/README.md b/ch02/README.md new file mode 100644 index 0000000..22c44f0 --- /dev/null +++ b/ch02/README.md @@ -0,0 +1,21 @@ + +# Flutter Full stack examples + +Developing Full-Stack Applications for the Cloud + +![Flutter & Dart Cookbook](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/images/flutter-dart-cookbook-sml.png "Flutter & Dart Cookbook") + +Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook + +## Dart Essentials I + +- [x] [2.1 Declaring an Integer variable +](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-1.md) +- [x] [2.2 Declaring a Double variable](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-2.md +- [x] [2.3 Declaring a bool variable](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-3.md) +- [x] [2.4 Declaring a string variable](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-4.md) +- [x] [2.5 Using a print statement](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-5.md) +- [x] [2.6 Using a const](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-6.md) +- [x] [2.7 Using final](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-7.md) +- [x] [2.8 Working with Null](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-8.md) + From daa7f61e3f496c62d4a95d1e3a63a7df4753f538 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 14:03:39 +0100 Subject: [PATCH 05/35] chapter links updated --- ch03/README.md | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/ch03/README.md b/ch03/README.md index a803e26..2fd788b 100644 --- a/ch03/README.md +++ b/ch03/README.md @@ -9,14 +9,9 @@ Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook ## Dart Essentials I -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [3.1 Using an If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch03/ex3-1.md) +- [x] [3.2 Using While/Do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch03/ex3-2.md) +- [x] [3.3 Using a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch03/ex3-3.md) +- [x] [3.4 Using a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch03/ex3-4.md) +- [x] [3.5 Using an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch03/ex3-5.md) +- [x] [3.6 Handling exceptions](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch03/ex3-6.md) From 2e375e5508c2d7c4d679ab2b9e755edde94ba8f9 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 14:48:59 +0100 Subject: [PATCH 06/35] chapter links updated --- ch04/README.md | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/ch04/README.md b/ch04/README.md index a803e26..abee773 100644 --- a/ch04/README.md +++ b/ch04/README.md @@ -7,16 +7,10 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Implementing Functions -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [4.1 Declaring functions](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch04/ex4-1.md) +- [x] [4.2 Adding Parameters to functions](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch04/ex4-2.md) +- [x] [4.3 Returning values from functions](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch04/ex4-3.md) +- [x] [4.4 Declaring anonymous functions](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch04/ex4-4.md) +- [x] [4.5 Using optional parameters](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch04/ex4-5.md) From 5ab916ddf01d2547fd83bc6781e221f38f924d4b Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 14:57:47 +0100 Subject: [PATCH 07/35] chapter links updated --- ch05/README.md | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/ch05/README.md b/ch05/README.md index a803e26..62a036f 100644 --- a/ch05/README.md +++ b/ch05/README.md @@ -7,16 +7,11 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Handling maps and lists -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [5.1 Using a map to handle objects](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch05/ex5-1.md) +- [x] [5.2 Retrieving map content](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch05/ex5-2.md) +- [x] [5.3 Validating key existence within a map](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch05/ex5-3.md) +- [x] [5.4 Working with lists](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch05/ex5-4.md) +- [x] [5.5 Adding list content](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch05/ex5-5.md) +- [x] [5.6 Using lists with complex types](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch05/ex5-6.md) From a36ec892bc4dc0aad44d01f4a3f4bcb59fc5268e Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 14:59:26 +0100 Subject: [PATCH 08/35] chapter title updated --- ch01/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ch01/README.md b/ch01/README.md index 52b35e9..a8c7268 100644 --- a/ch01/README.md +++ b/ch01/README.md @@ -6,8 +6,8 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I - +## Setting up your environment + - [x] [1.1 How to install the Dart SDK](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-1.md) - [x] [1.2 How to run a Dart application](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-2.md) - [x] [1.3 Extending Android Studio to support Dart](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-3.md From 546a248d07971db564c7c1fbf35b21995d686841 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 15:00:37 +0100 Subject: [PATCH 09/35] chapter title updated --- ch02/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch02/README.md b/ch02/README.md index 22c44f0..1f86c79 100644 --- a/ch02/README.md +++ b/ch02/README.md @@ -7,7 +7,7 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Learning Dart variables - [x] [2.1 Declaring an Integer variable ](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-1.md) From 754d7a59f90e04b18808dba78de093ff74a22cc9 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 15:01:38 +0100 Subject: [PATCH 10/35] chapter title updated --- ch03/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch03/README.md b/ch03/README.md index 2fd788b..500ba13 100644 --- a/ch03/README.md +++ b/ch03/README.md @@ -7,7 +7,7 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Exploring control flow - [x] [3.1 Using an If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch03/ex3-1.md) - [x] [3.2 Using While/Do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch03/ex3-2.md) From 252181d772484d4418b71c6894f5e3570e6f6b8e Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 15:15:22 +0100 Subject: [PATCH 11/35] README.md updated --- ch06/README.md | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/ch06/README.md b/ch06/README.md index a803e26..ce2826b 100644 --- a/ch06/README.md +++ b/ch06/README.md @@ -7,16 +7,10 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Leveraging classes -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [6.1 Defining classes](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch06/ex6-1.md) +- [x] [6.2 Using class constructors](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch06/ex6-2.md) +- [x] [6.3 Extending a class](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch06/ex6-3.md) +- [x] [6.4 Extending classes with mixins](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch06/ex6-4.md) +- [x] [6.5 Importing a package](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch06/ex6-5.md) From 8e4fd5c0cfee345bfc6bd156d734791abb5e3762 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 15:21:51 +0100 Subject: [PATCH 12/35] README.md links updated --- ch07/README.md | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/ch07/README.md b/ch07/README.md index a803e26..c8bdc29 100644 --- a/ch07/README.md +++ b/ch07/README.md @@ -7,16 +7,11 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Introducing the Flutter framework -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [7.1 Mocking an interface](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch07ex7-1.md) +- [x] [7.2 Creating a Flutter project](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch07/ex7-2.md) +- [x] [7.3 Working with a stateful widget](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch07/ex7-3.md) +- [x] [7.4 Working with a stateless widget](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch07/ex7-4.md) +- [x] [7.5 Refactoring widgets](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch07/ex7-5.md) +- [x] [7.6 Removing the Flutter debug banner](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch07/ex7-6.md) From 310ee162cadbed39190a4d6dc38f0ab42e7dfc11 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 15:29:21 +0100 Subject: [PATCH 13/35] README.md links updated --- ch08/README.md | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/ch08/README.md b/ch08/README.md index a803e26..183f649 100644 --- a/ch08/README.md +++ b/ch08/README.md @@ -7,16 +7,13 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Working with widgets -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [8.1 Using the scaffold class](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08ex8-1.md) +- [x] [8.2 Using an AppBar](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08/ex8-2.md) +- [x] [8.3 Using an Expanded widget](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08/ex8-3.md) +- [x] [8.4 Building with a container](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08/ex8-4.md) +- [x] [8.5 Using a Center widget](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08/ex8-5.md) +- [x] [8.6 Using a SizedBox](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08/ex8-6.md) +- [x] [8.7 Using a Column](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08/ex8-7.md) +- [x] [8.8 Using a Row](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08/ex8-8.md) From 512269e72857f30c2ffe1c3079dd7484a719167a Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 15:37:27 +0100 Subject: [PATCH 14/35] README.md links updated --- ch09/README.md | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/ch09/README.md b/ch09/README.md index a803e26..a86143b 100644 --- a/ch09/README.md +++ b/ch09/README.md @@ -7,16 +7,11 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Developing user interfaces -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [9.1 Incorporating rich text](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch09/ex9-1.md) +- [x] [9.2 Incororating the Google Fonts package](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch09/ex9-2.md) +- [x] [9.3 Identifying the host platform](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch09/ex9-3.md) +- [x] [9.4 Using a Placeholder widget](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch09/ex9-4.md) +- [x] [9.5 Using a Layout builder](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch09/ex9-5.md) +- [x] [9.6 Getting screen dimensions with Media query](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch09/ex9-6.md) From e9437e2a9280a02d8005351011d50ceebfe5cc2e Mon Sep 17 00:00:00 2001 From: tastethedream Date: Sun, 7 Aug 2022 15:42:49 +0100 Subject: [PATCH 15/35] README.md links updated --- ch10/README.md | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/ch10/README.md b/ch10/README.md index a803e26..59f7f49 100644 --- a/ch10/README.md +++ b/ch10/README.md @@ -7,16 +7,10 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Organising on screen data -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [10.1 Implementing a vertical list](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch10/ex10-1.md) +- [x] [10.2 Implementing a horizontal list](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch10/ex10-2.md) +- [x] [10.3 Adding a SliverAppBar](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch10/ex10-3.md) +- [x] [10.4 Adding a grid of items](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch10/ex10-4.md) +- [x] [10.5 Adding a SnackBar (pop up notification](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch10/ex10-5.md) From e3710b632e935536ec57c7713a1aaa903ec9f3e1 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 11:41:12 +0100 Subject: [PATCH 16/35] README.md links updated --- ch11/README.md | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/ch11/README.md b/ch11/README.md index a803e26..02fa957 100644 --- a/ch11/README.md +++ b/ch11/README.md @@ -7,16 +7,10 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Flutter page navigation -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [11.1 Adding page navigation with routes ](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch11/ex11-1.md) +- [x] [11.2 Implementing a navigational drawer](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch11/ex11-2.md) +- [x] [11.3 Working with tabs](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch11/ex11-3.md) +- [x] [11.4 Adding bottom navigation ](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch11/ex11-4.md) +- [x] [11.5 Using keys to pass information](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch11/ex11-5.md) From ac084fad067bed8494a0b501052b6540347a5642 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 11:55:50 +0100 Subject: [PATCH 17/35] link error rectified --- ch03/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ch03/README.md b/ch03/README.md index 500ba13..ffa6747 100644 --- a/ch03/README.md +++ b/ch03/README.md @@ -9,9 +9,9 @@ Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook ## Exploring control flow -- [x] [3.1 Using an If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch03/ex3-1.md) -- [x] [3.2 Using While/Do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch03/ex3-2.md) -- [x] [3.3 Using a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch03/ex3-3.md) -- [x] [3.4 Using a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch03/ex3-4.md) -- [x] [3.5 Using an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch03/ex3-5.md) -- [x] [3.6 Handling exceptions](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch03/ex3-6.md) +- [x] [3.1 Using an If statement](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch03/ex3-1.md) +- [x] [3.2 Using While/Do while](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch03/ex3-2.md) +- [x] [3.3 Using a For statement](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch03/ex3-3.md) +- [x] [3.4 Using a Switch statement](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch03/ex3-4.md) +- [x] [3.5 Using an Enum](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch03/ex3-5.md) +- [x] [3.6 Handling exceptions](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch03/ex3-6.md) From 509c5c79117cf281d640cf4639d1a68982766044 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 11:58:30 +0100 Subject: [PATCH 18/35] link error rectified --- ch04/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ch04/README.md b/ch04/README.md index abee773..f081d24 100644 --- a/ch04/README.md +++ b/ch04/README.md @@ -9,8 +9,8 @@ Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook ## Implementing Functions -- [x] [4.1 Declaring functions](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch04/ex4-1.md) -- [x] [4.2 Adding Parameters to functions](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch04/ex4-2.md) -- [x] [4.3 Returning values from functions](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch04/ex4-3.md) -- [x] [4.4 Declaring anonymous functions](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch04/ex4-4.md) -- [x] [4.5 Using optional parameters](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch04/ex4-5.md) +- [x] [4.1 Declaring functions](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch04/ex4-1.md) +- [x] [4.2 Adding Parameters to functions](https://github.com/rosera/flutter-/nd-dart-cookbook/blob/main/ch04/ex4-2.md) +- [x] [4.3 Returning values from functions](https://github.com/rosera/flutter-and-dart-cookbbokblob/main/ch04/ex4-3.md) +- [x] [4.4 Declaring anonymous functions](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch04/ex4-4.md) +- [x] [4.5 Using optional parameters](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch04/ex4-5.md) From 5b95fdc6e061702b32aae2d9411981a1f464df55 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 12:02:46 +0100 Subject: [PATCH 19/35] link error rectified --- ch05/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ch05/README.md b/ch05/README.md index 62a036f..c1b15de 100644 --- a/ch05/README.md +++ b/ch05/README.md @@ -9,9 +9,9 @@ Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook ## Handling maps and lists -- [x] [5.1 Using a map to handle objects](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch05/ex5-1.md) -- [x] [5.2 Retrieving map content](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch05/ex5-2.md) -- [x] [5.3 Validating key existence within a map](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch05/ex5-3.md) -- [x] [5.4 Working with lists](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch05/ex5-4.md) -- [x] [5.5 Adding list content](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch05/ex5-5.md) -- [x] [5.6 Using lists with complex types](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch05/ex5-6.md) +- [x] [5.1 Using a map to handle objects](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch05/ex5-1.md) +- [x] [5.2 Retrieving map content](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch05/ex5-2.md) +- [x] [5.3 Validating key existence within a map](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch05/ex5-3.md) +- [x] [5.4 Working with lists](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch05/ex5-4.md) +- [x] [5.5 Adding list content](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch05/ex5-5.md) +- [x] [5.6 Using lists with complex types](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch05/ex5-6.md) From 74ae49a3e0ad327fa02192a9ad30024c465a4f4b Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 12:04:54 +0100 Subject: [PATCH 20/35] link error rectified --- ch06/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ch06/README.md b/ch06/README.md index ce2826b..f600835 100644 --- a/ch06/README.md +++ b/ch06/README.md @@ -9,8 +9,8 @@ Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook ## Leveraging classes -- [x] [6.1 Defining classes](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch06/ex6-1.md) -- [x] [6.2 Using class constructors](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch06/ex6-2.md) -- [x] [6.3 Extending a class](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch06/ex6-3.md) -- [x] [6.4 Extending classes with mixins](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch06/ex6-4.md) -- [x] [6.5 Importing a package](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch06/ex6-5.md) +- [x] [6.1 Defining classes](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch06/ex6-1.md) +- [x] [6.2 Using class constructors](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch06/ex6-2.md) +- [x] [6.3 Extending a class](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch06/ex6-3.md) +- [x] [6.4 Extending classes with mixins](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch06/ex6-4.md) +- [x] [6.5 Importing a package](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch06/ex6-5.md) From 7d20ef3124e514a33e713f8060232c66299403fd Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 12:08:06 +0100 Subject: [PATCH 21/35] link error rectified --- ch07/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ch07/README.md b/ch07/README.md index c8bdc29..ca799d9 100644 --- a/ch07/README.md +++ b/ch07/README.md @@ -9,9 +9,9 @@ Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook ## Introducing the Flutter framework -- [x] [7.1 Mocking an interface](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch07ex7-1.md) -- [x] [7.2 Creating a Flutter project](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch07/ex7-2.md) -- [x] [7.3 Working with a stateful widget](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch07/ex7-3.md) -- [x] [7.4 Working with a stateless widget](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch07/ex7-4.md) -- [x] [7.5 Refactoring widgets](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch07/ex7-5.md) -- [x] [7.6 Removing the Flutter debug banner](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch07/ex7-6.md) +- [x] [7.1 Mocking an interface](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch07ex7-1.md) +- [x] [7.2 Creating a Flutter project](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch07/ex7-2.md) +- [x] [7.3 Working with a stateful widget](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch07/ex7-3.md) +- [x] [7.4 Working with a stateless widget](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch07/ex7-4.md) +- [x] [7.5 Refactoring widgets](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch07/ex7-5.md) +- [x] [7.6 Removing the Flutter debug banner](https://github.com/rosera/flutter-and-dart-cookbookblob/main/ch07/ex7-6.md) From 96d400e456b3684cf625cca6e50824d37e145874 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 12:12:22 +0100 Subject: [PATCH 22/35] link error rectified --- ch08/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ch08/README.md b/ch08/README.md index 183f649..1c4a7a9 100644 --- a/ch08/README.md +++ b/ch08/README.md @@ -9,11 +9,11 @@ Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook ## Working with widgets -- [x] [8.1 Using the scaffold class](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08ex8-1.md) -- [x] [8.2 Using an AppBar](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08/ex8-2.md) -- [x] [8.3 Using an Expanded widget](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08/ex8-3.md) -- [x] [8.4 Building with a container](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08/ex8-4.md) -- [x] [8.5 Using a Center widget](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08/ex8-5.md) -- [x] [8.6 Using a SizedBox](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08/ex8-6.md) -- [x] [8.7 Using a Column](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08/ex8-7.md) -- [x] [8.8 Using a Row](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch08/ex8-8.md) +- [x] [8.1 Using the scaffold class](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08ex8-1.md) +- [x] [8.2 Using an AppBar](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08/ex8-2.md) +- [x] [8.3 Using an Expanded widget](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08/ex8-3.md) +- [x] [8.4 Building with a container](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08/ex8-4.md) +- [x] [8.5 Using a Center widget](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08/ex8-5.md) +- [x] [8.6 Using a SizedBox](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08/ex8-6.md) +- [x] [8.7 Using a Column](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08/ex8-7.md) +- [x] [8.8 Using a Row](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08/ex8-8.md) From 3a2f1c78ad18ab95f0a06f2bc481c7d51678d0db Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 12:13:58 +0100 Subject: [PATCH 23/35] link error rectified --- ch09/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ch09/README.md b/ch09/README.md index a86143b..16a4f29 100644 --- a/ch09/README.md +++ b/ch09/README.md @@ -9,9 +9,9 @@ Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook ## Developing user interfaces -- [x] [9.1 Incorporating rich text](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch09/ex9-1.md) -- [x] [9.2 Incororating the Google Fonts package](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch09/ex9-2.md) -- [x] [9.3 Identifying the host platform](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch09/ex9-3.md) -- [x] [9.4 Using a Placeholder widget](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch09/ex9-4.md) -- [x] [9.5 Using a Layout builder](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch09/ex9-5.md) -- [x] [9.6 Getting screen dimensions with Media query](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch09/ex9-6.md) +- [x] [9.1 Incorporating rich text](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch09/ex9-1.md) +- [x] [9.2 Incororating the Google Fonts package](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch09/ex9-2.md) +- [x] [9.3 Identifying the host platform](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch09/ex9-3.md) +- [x] [9.4 Using a Placeholder widget](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch09/ex9-4.md) +- [x] [9.5 Using a Layout builder](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch09/ex9-5.md) +- [x] [9.6 Getting screen dimensions with Media query](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch09/ex9-6.md) From cd154dbb335ac9ded85bafeda27aecea99578b82 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 12:15:29 +0100 Subject: [PATCH 24/35] link error rectified --- ch10/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ch10/README.md b/ch10/README.md index 59f7f49..d5b4874 100644 --- a/ch10/README.md +++ b/ch10/README.md @@ -9,8 +9,8 @@ Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook ## Organising on screen data -- [x] [10.1 Implementing a vertical list](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch10/ex10-1.md) -- [x] [10.2 Implementing a horizontal list](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch10/ex10-2.md) -- [x] [10.3 Adding a SliverAppBar](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch10/ex10-3.md) -- [x] [10.4 Adding a grid of items](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch10/ex10-4.md) -- [x] [10.5 Adding a SnackBar (pop up notification](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch10/ex10-5.md) +- [x] [10.1 Implementing a vertical list](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch10/ex10-1.md) +- [x] [10.2 Implementing a horizontal list](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch10/ex10-2.md) +- [x] [10.3 Adding a SliverAppBar](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch10/ex10-3.md) +- [x] [10.4 Adding a grid of items](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch10/ex10-4.md) +- [x] [10.5 Adding a SnackBar (pop up notification](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch10/ex10-5.md) From 3f9ce6fa9ce3b572554daf3e78b1b5a14018b46b Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 12:17:41 +0100 Subject: [PATCH 25/35] link error rectified --- ch11/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ch11/README.md b/ch11/README.md index 02fa957..c571619 100644 --- a/ch11/README.md +++ b/ch11/README.md @@ -9,8 +9,8 @@ Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook ## Flutter page navigation -- [x] [11.1 Adding page navigation with routes ](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch11/ex11-1.md) -- [x] [11.2 Implementing a navigational drawer](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch11/ex11-2.md) -- [x] [11.3 Working with tabs](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch11/ex11-3.md) -- [x] [11.4 Adding bottom navigation ](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch11/ex11-4.md) -- [x] [11.5 Using keys to pass information](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch11/ex11-5.md) +- [x] [11.1 Adding page navigation with routes ](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch11/ex11-1.md) +- [x] [11.2 Implementing a navigational drawer](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch11/ex11-2.md) +- [x] [11.3 Working with tabs](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch11/ex11-3.md) +- [x] [11.4 Adding bottom navigation ](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch11/ex11-4.md) +- [x] [11.5 Using keys to pass information](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch11/ex11-5.md) From 3d021690885fc9e3753524e9c2bd0c7cbac31e83 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 12:40:17 +0100 Subject: [PATCH 26/35] link error rectified --- ch12/README.md | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/ch12/README.md b/ch12/README.md index a803e26..0a87358 100644 --- a/ch12/README.md +++ b/ch12/README.md @@ -7,16 +7,11 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Handling data assets -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [12.1 How to install the Dart SDK](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-1.md) +- [x] [12.2 How to run a Dart application](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-2.md) +- [x] [12.3 How to declare variables](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-3.md) +- [x] [12.4 How to use the print statement](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-4.md) +- [x] [12.5 How to use the If statement](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-5.md) +- [x] [12.6 How to use while/do while](https://github.com/rosera/flutter-and-dart-cookbook-examples/blob/main/ch12/ex12-6.md) From 2356a9d534354866c7396e95574d22ce1c47b731 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 12:49:28 +0100 Subject: [PATCH 27/35] links and title updated --- ch13/README.md | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/ch13/README.md b/ch13/README.md index a803e26..56ef946 100644 --- a/ch13/README.md +++ b/ch13/README.md @@ -7,16 +7,10 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Introducing Cloud services -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [13.1 Introducing cloud providers](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch13/ex13-1.md) +- [x] [13.2 Working with identity and access management](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch13/ex13-2.md) +- [x] [13.3 Using cloud storage to host and API](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch13/ex13-3.md) +- [x] [13.4 Using a spreadsheet as a backend](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch13/ex13-4.md) +- [x] [13.5 Developing with serverless (cloud run)](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch13/ex13-5.md) From d4815d554c3daed2478b5dd5627921a51a6e46c1 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 13:08:08 +0100 Subject: [PATCH 28/35] links and title updated --- ch14/README.md | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/ch14/README.md b/ch14/README.md index a803e26..93cb86c 100644 --- a/ch14/README.md +++ b/ch14/README.md @@ -7,16 +7,14 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Working with Firebase and Flutter -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [14.1 Integrating Firebase backend with Flutter](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-1.md) +- [x] [14.2 Setting up a Firebase project](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-2.md) +- [x] [14.3 Initilise Firebase on the client](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-3.md) +- [x] [14.4 Firebase/Flutter client integration](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-4.md) +- [x] [14.5 Configuring Firebase emulators for local development](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-5.md) +- [x] [14.6 Adding Firebase authentication to Flutter ](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-6.md) +- [x] [14.7 Setting up cloud Firestore](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-7.md) +- [x] [14.8 Writing data to cloud Firestore](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-8.md) +- [x] [14.9 Reading data from cloud Firestore](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-9.md) From 8629545f817eebd666633d892e1fe9ceab3a82c2 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 13:20:35 +0100 Subject: [PATCH 29/35] links and title updated --- ch15/README.md | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/ch15/README.md b/ch15/README.md index a803e26..aea9072 100644 --- a/ch15/README.md +++ b/ch15/README.md @@ -7,16 +7,14 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Starting with game development -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [15.1 Adding the Flame package to Flutter](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-1.md) +- [x] [15.2 Using the Flame boilerplate](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-2.md) +- [x] [15.3 Refactoring with Flame components](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-3.md) +- [x] [15.4 Using the Flame graphic primitives](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-4.md) +- [x] [15.5 Adding text rendering](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-5.md) +- [x] [15.6 Adding sound effects to a Flame game](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-6.md) +- [x] [15.7 Adding keyboard input](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-7.md) +- [x] [15.8 Adding collision detection](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-8.md) +- [x] [15.9 Adding inout for user interactivity](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-9.md) From 1da592a30917e35f8be5f9d6a348a27f142b9504 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 13:32:12 +0100 Subject: [PATCH 30/35] links and title updated --- ch16/README.md | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/ch16/README.md b/ch16/README.md index a803e26..6e67879 100644 --- a/ch16/README.md +++ b/ch16/README.md @@ -7,16 +7,11 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Using Dart test cases -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [16.0 Using Dart test cases](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch16/ex16-0.md) +- [x] [16.1 Adding the Dart test package](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch16/ex16-1.md) +- [x] [16.2 How to apply unit tests to Dart](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch16/ex16-2.md) +- [x] [16.3 Grouping multiple unit tests](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch16/ex16-3.md) +- [x] [16.4 Adding mock data for testing](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch16/ex16-4.md) +- [x] [16.5 Performing widget testing](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch16/ex16-5.md) From 540071809058c1c4f14f9e0af1441ebc475667bd Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 13:39:29 +0100 Subject: [PATCH 31/35] links and title updated --- ch17/README.md | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/ch17/README.md b/ch17/README.md index a803e26..c3ed797 100644 --- a/ch17/README.md +++ b/ch17/README.md @@ -7,16 +7,8 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## Dart Essentials I +## Testing the Flutter user interface -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) +- [x] [17.1 Testing widgets in Flutter](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch17/ex17-1.md) +- [x] [17.2 Performing integration testing with Flutter Driver](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch17/ex17-2.md) +- [x] [17.3 Testing Android/iOS device compatibility ](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch17/ex17-3.md) From e5c616ea08dd83b9c12006bb0902a4aec82233a8 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 13:42:26 +0100 Subject: [PATCH 32/35] spelling error amended --- ch14/ex14-8.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ch14/ex14-8.md b/ch14/ex14-8.md index 26c07a5..78344ae 100644 --- a/ch14/ex14-8.md +++ b/ch14/ex14-8.md @@ -1,4 +1,4 @@ -# 14.8 Writing to data to Cloud Firestore +# 14.8 Writing data to Cloud Firestore # Example: Add packages @@ -9,7 +9,7 @@ flutter pub add cloud_firestore ``` -# Example: Firebase essentionals II +# Example: Firebase essentials II [https://docs.google.com/document/d/1EWne4Bd0ETHkEQgWuvrVZeQXEgDLXMY69iHw138PYNk/edit?resourcekey=0-8K3f5lNqMJyX2L9aQucPag#](Firebase & Flutter) From 2a9c1f5550704e6bed32fed35fdab26f55465a7d Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 13:43:26 +0100 Subject: [PATCH 33/35] spelling error amended --- ch15/ex15-8.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch15/ex15-8.md b/ch15/ex15-8.md index 829e62a..1413ea0 100644 --- a/ch15/ex15-8.md +++ b/ch15/ex15-8.md @@ -1,4 +1,4 @@ -# 15.8 Adding Collection Detection +# 15.8 Adding Collision Detection # Example: Collision detection From f45393948f32609684dbec18766370b3aa314083 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 15:18:55 +0100 Subject: [PATCH 34/35] title errors rectified --- ch12/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ch12/README.md b/ch12/README.md index 0a87358..e60360e 100644 --- a/ch12/README.md +++ b/ch12/README.md @@ -9,9 +9,9 @@ Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook ## Handling data assets -- [x] [12.1 How to install the Dart SDK](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-1.md) -- [x] [12.2 How to run a Dart application](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-2.md) -- [x] [12.3 How to declare variables](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-3.md) -- [x] [12.4 How to use the print statement](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-4.md) -- [x] [12.5 How to use the If statement](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-5.md) -- [x] [12.6 How to use while/do while](https://github.com/rosera/flutter-and-dart-cookbook-examples/blob/main/ch12/ex12-6.md) +- [x] [12.1 Refactoring data](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-1.md) +- [x] [12.2 Local data management](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-2.md) +- [x] [12.3 Asset folder management](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-3.md) +- [x] [12.4 Remote data management JSON](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-4.md) +- [x] [12.5 Automating JSON to Dart classes](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-5.md) +- [x] [12.6 Using JSON serialization](https://github.com/rosera/flutter-and-dart-cookbook-examples/blob/main/ch12/ex12-6.md) From 4dcabbd0c32def0c28d5cbb22823be6af02ab176 Mon Sep 17 00:00:00 2001 From: tastethedream Date: Mon, 8 Aug 2022 15:29:38 +0100 Subject: [PATCH 35/35] correct chapter and section links added --- README.md | 260 ++++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 184 insertions(+), 76 deletions(-) diff --git a/README.md b/README.md index 0d2cd40..bd67e32 100644 --- a/README.md +++ b/README.md @@ -6,79 +6,187 @@ Developing Full-Stack Applications for the Cloud Companion repository for O'Reilly Flutter & Dart Full Stack Cookbook -## [Chapter 1 Dart Essentials I](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch01) -- [x] [1.1 How to install the Dart SDK](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-1.md) -- [x] [1.2 How to run a Dart application](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-2.md) -- [x] [1.3 How to declare variables](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-3.md) -- [x] [1.4 How to use the print statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-4.md) -- [x] [1.5 How to use the If statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-5.md) -- [x] [1.6 How to use while/do while](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-6.md) -- [x] [1.7 How to use a For statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-7.md) -- [x] [1.8 How to use a Switch statement](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-8.md) -- [x] [1.9 How to use an Enum](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-9.md) -- [x] [1.10 How to use a Const](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-10.md) -- [x] [1.11 How to use a Final](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch01/ex1-11.md) - -## [Chapter 2 Dart Essentials II](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch02) -- [x] [How to declare functions](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch02/ex2-1.md) -- [x] [How to declare anoynomous functions](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch02/ex2-2.md) -- [x] [How to declare classes](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch02/ex2-3.md) -- [x] [How to declare constructors](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch02/ex2-4.md) -- [x] [How to extend clasess](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch02/ex2-5.md) -- [x] [How to use mixins](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch02/ex2-6.md) -- [x] [How to use Lists](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch02/ex2-7.md) -- [x] [How to use a Map](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch02/ex2-8.md) -- [x] [How to work with Null](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch02/ex2-9.md) -- [x] [How to handle Exceptions](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch02/ex2-10.md) -- [x] [How to use Import](https://github.com/rosera/flutter-full-stack-examples/blob/main/ch02/ex2-11.md) - -## [Chapter 3 Flutter Essentials I](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch03) -- [ ] Mocking an application interface -- [ ] Create a Flutter Project -- [ ] Building with Widgets -- [ ] Working with Rich Text -- [ ] Using Horizontal lists -- [ ] Using Vertical lists -- [ ] Adding user interactivity -- [ ] Adding page navigation -- [ ] Adding a snackbar -- [ ] adding SliverAppBar -- [ ] Determining the platform - -## [Chapter 4 Flutter Essentials II](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch04) -- [ ] Using Expanded -- [ ] Using Circle Avatar -- [ ] Using Media Query -- [ ] Using Stateful Widgets -- [ ] Using Stateless Widgets -- [ ] Adding googlefonts -- [ ] Adding a container -- [ ] Adding Bottom navigation -- [ ] Adding a Drawer -- [ ] Adding a Gridview -- [ ] Adding an introduction screen (Splash) - -## [Chapter 5 Flutter Essentials III](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch05) -- [ ] Using local data management -- [ ] Using JSON -- [ ] Adding a Future loader - -## [Chapter 6 Cloud Essentials I](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch06) -- [ ] Cloud Providers - e.g. Google Cloud, AWS, Azure -- [ ] Using Cloud Object Storage -- [ ] Using Workspace APIs - -## [Chapter 7 Cloud Essentials II](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch07) -- [ ] Google Cloud Run -- [ ] AWS Lamba -- [ ] Azure Functions - -## [Chapter 8 Authentication I](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch08) -- [ ] Passport -- [ ] Firebase Authentication - -## [Chapter 9 Databases I](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch09) -- [ ] Firebase Firestore -- [ ] MongoDB -- [ ] MySQL -- [ ] PostgreSQL + +## [Chapter 1 Setting up your environment](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch01) + +- [x] [1.1 How to install the Dart SDK](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-1.md) +- [x] [1.2 How to run a Dart application](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-2.md) +- [x] [1.3 Extending Android Studio to support Dart](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-3.md +- [x] [1.4 Developing with VS Code](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-4.md) +- [x] [1.5 Installing the Dart SDK](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-5.md) +- [x] [1.6 Running a Dart application](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-6.md) +- [x] [1.7 Selecting a release channel](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch01/ex1-7.md) + + +## [Chapter 2 Learning Dart variables](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch02) + + +- [x] [2.1 Declaring an integer variable](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-1.md +- [x] [2.2 Declaring a Double variable](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-2.md +- [x] [2.3 Declaring a bool variable](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-3.md) +- [x] [2.4 Declaring a string variable](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-4.md) +- [x] [2.5 Using a print statement](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-5.md) +- [x] [2.6 Using a const](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-6.md) +- [x] [2.7 Using final](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-7.md) +- [x] [2.8 Working with Null](http://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch02/ex2-8.md) + +## [Chapter 3 Exploring control flow](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch03) + + +- [x] [3.1 Using an If statement](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch03/ex3-1.md) +- [x] [3.2 Using While/Do while](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch03/ex3-2.md) +- [x] [3.3 Using a For statement](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch03/ex3-3.md) +- [x] [3.4 Using a Switch statement](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch03/ex3-4.md) +- [x] [3.5 Using an Enum](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch03/ex3-5.md) +- [x] [3.6 Handling exceptions](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch03/ex3-6.md) + + +## [Chapter 4 Implementing Functions](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch04) + + +- [x] [4.1 Declaring functions](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch04/ex4-1.md) +- [x] [4.2 Adding Parameters to functions](https://github.com/rosera/flutter-/nd-dart-cookbook/blob/main/ch04/ex4-2.md) +- [x] [4.3 Returning values from functions](https://github.com/rosera/flutter-and-dart-cookbbokblob/main/ch04/ex4-3.md) +- [x] [4.4 Declaring anonymous functions](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch04/ex4-4.md) +- [x] [4.5 Using optional parameters](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch04/ex4-5.md) + + +## [Chapter 5 Handling maps and lists](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch05) + + +- [x] [5.1 Using a map to handle objects](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch05/ex5-1.md) +- [x] [5.2 Retrieving map content](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch05/ex5-2.md) +- [x] [5.3 Validating key existence within a map](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch05/ex5-3.md) +- [x] [5.4 Working with lists](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch05/ex5-4.md) +- [x] [5.5 Adding list content](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch05/ex5-5.md) +- [x] [5.6 Using lists with complex types](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch05/ex5-6.md) + +## [Chapter 6 Leveraging classes](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch06) + + +- [x] [6.1 Defining classes](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch06/ex6-1.md) +- [x] [6.2 Using class constructors](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch06/ex6-2.md) +- [x] [6.3 Extending a class](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch06/ex6-3.md) +- [x] [6.4 Extending classes with mixins](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch06/ex6-4.md) +- [x] [6.5 Importing a package](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch06/ex6-5.md) + + +## [Chapter 7 Introducing the Flutter framework](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch07) + + +- [x] [7.1 Mocking an interface](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch07ex7-1.md) +- [x] [7.2 Creating a Flutter project](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch07/ex7-2.md) +- [x] [7.3 Working with a stateful widget](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch07/ex7-3.md) +- [x] [7.4 Working with a stateless widget](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch07/ex7-4.md) +- [x] [7.5 Refactoring widgets](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch07/ex7-5.md) +- [x] [7.6 Removing the Flutter debug banner](https://github.com/rosera/flutter-and-dart-cookbookblob/main/ch07/ex7-6.md) + +## [Chapter 8 Working with widgets](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch08) + + +- [x] [8.1 Using the scaffold class](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08ex8-1.md) +- [x] [8.2 Using an AppBar](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08/ex8-2.md) +- [x] [8.3 Using an Expanded widget](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08/ex8-3.md) +- [x] [8.4 Building with a container](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08/ex8-4.md) +- [x] [8.5 Using a Center widget](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08/ex8-5.md) +- [x] [8.6 Using a SizedBox](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08/ex8-6.md) +- [x] [8.7 Using a Column](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08/ex8-7.md) +- [x] [8.8 Using a Row](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch08/ex8-8.md) + + +## [Chapter 9 Developing user interfaces](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch09) + + +- [x] [9.1 Incorporating rich text](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch09/ex9-1.md) +- [x] [9.2 Incororating the Google Fonts package](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch09/ex9-2.md) +- [x] [9.3 Identifying the host platform](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch09/ex9-3.md) +- [x] [9.4 Using a Placeholder widget](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch09/ex9-4.md) +- [x] [9.5 Using a Layout builder](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch09/ex9-5.md) +- [x] [9.6 Getting screen dimensions with Media query](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch09/ex9-6.md) + + +## [Chapter 10 Organising on screen data](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch10) + + +- [x] [10.1 Implementing a vertical list](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch10/ex10-1.md) +- [x] [10.2 Implementing a horizontal list](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch10/ex10-2.md) +- [x] [10.3 Adding a SliverAppBar](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch10/ex10-3.md) +- [x] [10.4 Adding a grid of items](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch10/ex10-4.md) +- [x] [10.5 Adding a SnackBar (pop up notification](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch10/ex10-5.md) + + +## [Chapter 11 Flutter page navigation](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch11) + + +- [x] [11.1 Adding page navigation with routes ](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch11/ex11-1.md) +- [x] [11.2 Implementing a navigational drawer](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch11/ex11-2.md) +- [x] [11.3 Working with tabs](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch11/ex11-3.md) +- [x] [11.4 Adding bottom navigation ](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch11/ex11-4.md) +- [x] [11.5 Using keys to pass information](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch11/ex11-5.md) + + + +## [Chapter 12 Handling data assets](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch12) + + +- [x] [12.1 Refactoring data](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-1.md) +- [x] [12.2 Local data management](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-2.md) +- [x] [12.3 Asset folder management](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-3.md) +- [x] [12.4 Remote data management JSON](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-4.md) +- [x] [12.5 Automating JSON to Dart classes](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch12/ex12-5.md) +- [x] [12.6 Using JSON serialization](https://github.com/rosera/flutter-and-dart-cookbook-examples/blob/main/ch12/ex12-6.md) + +## [Chapter 13 Introducing cloud services](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch13) + + +- [x] [13.1 Introducing cloud providers](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch13/ex13-1.md) +- [x] [13.2 Working with identity and access management](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch13/ex13-2.md) +- [x] [13.3 Using cloud storage to host and API](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch13/ex13-3.md) +- [x] [13.4 Using a spreadsheet as a backend](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch13/ex13-4.md) +- [x] [13.5 Developing with serverless (cloud run)](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch13/ex13-5.md) + +## [Chapter 14 Working with Firebase and Flutter](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch14) + + +- [x] [14.1 Integrating Firebase backend with Flutter](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-1.md) +- [x] [14.2 Setting up a Firebase project](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-2.md) +- [x] [14.3 Initilise Firebase on the client](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-3.md) +- [x] [14.4 Firebase/Flutter client integration](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-4.md) +- [x] [14.5 Configuring Firebase emulators for local development](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-5.md) +- [x] [14.6 Adding Firebase authentication to Flutter ](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-6.md) +- [x] [14.7 Setting up cloud Firestore](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-7.md) +- [x] [14.8 Writing data to cloud Firestore](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-8.md) +- [x] [14.9 Reading data from cloud Firestore](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch14/ex14-9.md) + + +## [Chapter 15 Starting game development](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch15) + + +- [x] [15.1 Adding the Flame package to Flutter](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-1.md) +- [x] [15.2 Using the Flame boilerplate](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-2.md) +- [x] [15.3 Refactoring with Flame components](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-3.md) +- [x] [15.4 Using the Flame graphic primitives](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-4.md) +- [x] [15.5 Adding text rendering](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-5.md) +- [x] [15.6 Adding sound effects to a Flame game](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-6.md) +- [x] [15.7 Adding keyboard input](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-7.md) +- [x] [15.8 Adding collision detection](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-8.md) +- [x] [15.9 Adding inout for user interactivity](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch15/ex15-9.md) + + +## [Chapter 16 Using Dart test cases](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch16) + + +- [x] [16.0 Using Dart test cases](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch16/ex16-0.md) +- [x] [16.1 Adding the Dart test package](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch16/ex16-1.md) +- [x] [16.2 How to apply unit tests to Dart](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch16/ex16-2.md) +- [x] [16.3 Grouping multiple unit tests](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch16/ex16-3.md) +- [x] [16.4 Adding mock data for testing](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch16/ex16-4.md) +- [x] [16.5 Performing widget testing](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch16/ex16-5.md) + + +## [Chapter 17 Testing the Flutter user interface](https://github.com/rosera/flutter-and-dart-cookbook/tree/main/ch17) + + +- [x] [17.1 Testing widgets in Flutter](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch17/ex17-1.md) +- [x] [17.2 Performing integration testing with Flutter Driver](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch17/ex17-2.md) +- [x] [17.3 Testing Android/iOS device compatibility ](https://github.com/rosera/flutter-and-dart-cookbook/blob/main/ch17/ex17-3.md)