August 24 
 
 
 Flutter Layout Cheat Sheet 
 
 
view for detail: https://medium.com/flutter-community/flutter-layout-cheat-sheet-5363348d037e 
...
 
 
 
 July 31 
 
 
 Flutter - main 
 
 
import 'package:flutter/material.dart'; //3rd party
import 'package:findiss/Helper/Constants.dart';
import 'package:findiss/pages/home.dart';
void main() {
 return runApp(MyApp());
}
class MyApp extends StatelessWidget {
 @override
 Widget build(BuildContext context) {
 return new MaterialApp(
 title: Constants.APPTITLE,
 theme: new ThemeData(
 primaryColor: Colors.pink
 ),
 ...
 
 
 
 July 13 
 
 
 Flutter notes 
 
 
 1. setup coding env. for Andriod & iOS
	Anrioid
		download Android stuidio and install it: https://developer.android.com/studio  and download for Flutter for Mac: https://flutter.dev/docs/get-started/install/macos  
		(tip: you might want to use https://code.visualstudio.com/docs/?dv=osx for IDE)
	iOS
		note: you might have to run to get your code for xocde:
			$  sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
			$ sudo xcodebuild -license
		Set up the iOS simulator
			$ open -a Simulator
		Ensure that homebrew is up to date:
			brew update
			brew install --HEAD usbmuxd
			brew link...