Sunday, April 30, 2017

Flutter - Flutter - The Infinite ListView

This video covers:
- Create Material App From Scratch
- Create a Home Page
- Navigate to a Page with a ListView
- Reference a State Object
- Navigate to the Items Page


Wednesday, April 26, 2017

Flutter - JSON Decoding and Encoding

This video covers:

  • Encode JSON 
  • Post JSON with the http client
  • Get JSON with the http client
  • Decode JSON




Flutter Networking
https://flutter.io/networking/

Firebase Rest Guide
https://firebase.google.com/docs/reference/rest/database/

Firebase Data Dashboard
https://console.firebase.google.com/project/dev-sandbox-d9a97/database/data


Thursday, April 20, 2017

Flutter - Basic Routing to Pages

This Video Covers:
- Create a live template for a pages
- Create a new page
- Push to the new page route
- Pop back to the previous route



stful-page template source
https://gist.github.com/branflake2267/3a27c6597bf8e1819228178b924f433c

Saturday, April 8, 2017

Flutter - The Windows Install - part 3/3

This video covers:

- IntelliJ IDEA Install
- Flutter Plugin Install
- Create and Debug a Flutter App

Flutter.io Windows Guide
https://flutter.io/setup-windows/


Thursday, April 6, 2017

Flutter - The Windows Install - part 2/3

This video covers:
  • Android Studio Install
  • Android Emulator Setup
  • Flutter Doctor
Flutter Windows Guide:





Flutter -

The Windows Install - part 2/3

Monday, April 3, 2017

Flutter - The Windows Install - part 1/3

This video covers:
  • git clone the flutter repo
  • set PATH to the flutter binary
  • run flutter doctor
Windows Setup Guide

Using: Flutter, Dart and Windows 10

Version 2



Version 1


Saturday, April 1, 2017

Flutter - Add an Image to the Assets

This video covers:
  • Create an assets directory 1x, 2x
  • Add an image to the assets
  • Create an Image Widget
Using: Flutter, Dart, IntelliJ IDEA, Android Emulator



Flutter - Creating a Library of Widgets

This video covers:
  • Create a new widgets.dart file library
  • Add a new widget to the library
  • Import and use the widget in the new library




Using: Flutter, Dart, IntelliJ IDEA, IPhone Simulator


Trying out the Dart Analysis Server

I wanted to see how the Dart Analysis Server was put together and worked. I started looking to see how I could wire it up and try out the co...