first commit
diff --git a/packages/flutter_image/.gitignore b/packages/flutter_image/.gitignore
new file mode 100644
index 0000000..25a1df3
--- /dev/null
+++ b/packages/flutter_image/.gitignore
@@ -0,0 +1,9 @@
+.buildlog
+.DS_Store
+.idea
+.pub/
+.settings/
+build/
+packages
+.packages
+pubspec.lock
diff --git a/packages/flutter_image/.test_config b/packages/flutter_image/.test_config
new file mode 100644
index 0000000..352d2fe
--- /dev/null
+++ b/packages/flutter_image/.test_config
@@ -0,0 +1,3 @@
+{
+ "test_package": true
+}
diff --git a/packages/flutter_image/.travis.yml b/packages/flutter_image/.travis.yml
new file mode 100644
index 0000000..b35c9f6
--- /dev/null
+++ b/packages/flutter_image/.travis.yml
@@ -0,0 +1,15 @@
+language: dart
+
+script: ./tool/travis.sh
+
+# Speed up builds by using containerization. Disable this if you need to use
+# sudo in your scripts.
+sudo: false
+
+branches:
+ only:
+ - master
+
+cache:
+ directories:
+ - $HOME/.pub-cache
diff --git a/packages/flutter_image/AUTHORS b/packages/flutter_image/AUTHORS
new file mode 100644
index 0000000..e8063a8
--- /dev/null
+++ b/packages/flutter_image/AUTHORS
@@ -0,0 +1,6 @@
+# Below is a list of people and organizations that have contributed
+# to the project. Names should be added to the list like so:
+#
+# Name/Organization <email address>
+
+Google Inc.
diff --git a/packages/flutter_image/CHANGELOG.md b/packages/flutter_image/CHANGELOG.md
new file mode 100644
index 0000000..2a2d63c
--- /dev/null
+++ b/packages/flutter_image/CHANGELOG.md
@@ -0,0 +1,5 @@
+# Changelog
+
+## 0.0.1
+
+- Initial version
diff --git a/packages/flutter_image/LICENSE b/packages/flutter_image/LICENSE
new file mode 100644
index 0000000..c9d23b9
--- /dev/null
+++ b/packages/flutter_image/LICENSE
@@ -0,0 +1,26 @@
+Copyright 2015, the Flutter project authors. All rights reserved.
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above
+ copyright notice, this list of conditions and the following
+ disclaimer in the documentation and/or other materials provided
+ with the distribution.
+ * Neither the name of Google Inc. nor the names of its
+ contributors may be used to endorse or promote products derived
+ from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/packages/flutter_image/README.md b/packages/flutter_image/README.md
new file mode 100644
index 0000000..f18a24c
--- /dev/null
+++ b/packages/flutter_image/README.md
@@ -0,0 +1,9 @@
+# REPLACE_ME
+
+A library for Flutter developers. It is awesome.
+
+## Features and bugs
+
+Please file feature requests and bugs at the [issue tracker][tracker].
+
+[tracker]: https://github.com/flutter/REPLACE_ME/issues
diff --git a/packages/flutter_image/lib/sample.dart b/packages/flutter_image/lib/sample.dart
new file mode 100644
index 0000000..edadc95
--- /dev/null
+++ b/packages/flutter_image/lib/sample.dart
@@ -0,0 +1,5 @@
+// Copyright (c) 2015, the Flutter project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+main() => print('foo');
diff --git a/packages/flutter_image/pubspec.yaml b/packages/flutter_image/pubspec.yaml
new file mode 100644
index 0000000..6c169cb
--- /dev/null
+++ b/packages/flutter_image/pubspec.yaml
@@ -0,0 +1,14 @@
+name: REPLACE_ME
+version: 0.0.1
+description: A sample library.
+author: Flutter Team <flutter-dev@googlegroups.com>
+homepage: https://github.com/flutter/REPLACE_ME
+
+environment:
+ sdk: '>=1.0.0 <2.0.0'
+
+#dependencies:
+# lib_name: any
+dev_dependencies:
+# change this to a specific version range when you create your project
+ test: REPLACE_ME
diff --git a/packages/flutter_image/test/all_test.dart b/packages/flutter_image/test/all_test.dart
new file mode 100644
index 0000000..4183821
--- /dev/null
+++ b/packages/flutter_image/test/all_test.dart
@@ -0,0 +1,12 @@
+// Copyright (c) 2015, the Flutter project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+import 'package:sample/sample.dart';
+import 'package:test/test.dart';
+
+main() {
+ group('A group of tests', () {
+ test('First Test', () {});
+ });
+}
diff --git a/packages/flutter_image/todo.txt b/packages/flutter_image/todo.txt
new file mode 100644
index 0000000..1495a55
--- /dev/null
+++ b/packages/flutter_image/todo.txt
@@ -0,0 +1,11 @@
+- rename project in pubspec.yaml
+- update description in pubspec.yaml
+- update the homepage: field in pubspec.yaml
+
+- rename project in readme.md
+- update description in readme.md
+- update the [tracker] url in readme.md
+
+- (optionally) add a codereview.settings file
+
+- delete todo.txt :)