├── .atom └── launches │ └── all_test.yaml ├── .gitattributes ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── doc └── images │ └── screenshot.png ├── lib ├── flutter.dart ├── menus │ └── getting_started.dart ├── state.dart └── usage.dart ├── menus └── flutter.cson ├── package.json ├── pubspec.yaml ├── test └── all_test.dart ├── tool ├── grind.dart └── travis.sh └── web ├── atom.js ├── atom.js.map ├── atom.sum ├── atom_flutter.js ├── atom_flutter.js.map ├── atom_flutter.sum ├── entry.dart ├── entry.dart.js ├── entry.dart.js.map ├── entry.js ├── entry.js.map ├── entry.sum ├── entry_all.js ├── logging.js ├── logging.js.map ├── logging.sum ├── usage.js ├── usage.js.map └── usage.sum /.atom/launches/all_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/.atom/launches/all_test.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /doc/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/doc/images/screenshot.png -------------------------------------------------------------------------------- /lib/flutter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/lib/flutter.dart -------------------------------------------------------------------------------- /lib/menus/getting_started.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/lib/menus/getting_started.dart -------------------------------------------------------------------------------- /lib/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/lib/state.dart -------------------------------------------------------------------------------- /lib/usage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/lib/usage.dart -------------------------------------------------------------------------------- /menus/flutter.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/menus/flutter.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/package.json -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/all_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/test/all_test.dart -------------------------------------------------------------------------------- /tool/grind.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/tool/grind.dart -------------------------------------------------------------------------------- /tool/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/tool/travis.sh -------------------------------------------------------------------------------- /web/atom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/atom.js -------------------------------------------------------------------------------- /web/atom.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/atom.js.map -------------------------------------------------------------------------------- /web/atom.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/atom.sum -------------------------------------------------------------------------------- /web/atom_flutter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/atom_flutter.js -------------------------------------------------------------------------------- /web/atom_flutter.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/atom_flutter.js.map -------------------------------------------------------------------------------- /web/atom_flutter.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/atom_flutter.sum -------------------------------------------------------------------------------- /web/entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/entry.dart -------------------------------------------------------------------------------- /web/entry.dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/entry.dart.js -------------------------------------------------------------------------------- /web/entry.dart.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/entry.dart.js.map -------------------------------------------------------------------------------- /web/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/entry.js -------------------------------------------------------------------------------- /web/entry.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/entry.js.map -------------------------------------------------------------------------------- /web/entry.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/entry.sum -------------------------------------------------------------------------------- /web/entry_all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/entry_all.js -------------------------------------------------------------------------------- /web/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/logging.js -------------------------------------------------------------------------------- /web/logging.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/logging.js.map -------------------------------------------------------------------------------- /web/logging.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/logging.sum -------------------------------------------------------------------------------- /web/usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/usage.js -------------------------------------------------------------------------------- /web/usage.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/usage.js.map -------------------------------------------------------------------------------- /web/usage.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-atom/atom-flutter/HEAD/web/usage.sum --------------------------------------------------------------------------------