mirror of
https://github.com/flutter/packages.git
synced 2025-07-04 01:33:59 +08:00
first commit
This commit is contained in:
9
packages/flutter_image/.gitignore
vendored
Normal file
9
packages/flutter_image/.gitignore
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
.buildlog
|
||||||
|
.DS_Store
|
||||||
|
.idea
|
||||||
|
.pub/
|
||||||
|
.settings/
|
||||||
|
build/
|
||||||
|
packages
|
||||||
|
.packages
|
||||||
|
pubspec.lock
|
3
packages/flutter_image/.test_config
Normal file
3
packages/flutter_image/.test_config
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"test_package": true
|
||||||
|
}
|
15
packages/flutter_image/.travis.yml
Normal file
15
packages/flutter_image/.travis.yml
Normal file
@ -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
|
6
packages/flutter_image/AUTHORS
Normal file
6
packages/flutter_image/AUTHORS
Normal file
@ -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.
|
5
packages/flutter_image/CHANGELOG.md
Normal file
5
packages/flutter_image/CHANGELOG.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
## 0.0.1
|
||||||
|
|
||||||
|
- Initial version
|
26
packages/flutter_image/LICENSE
Normal file
26
packages/flutter_image/LICENSE
Normal file
@ -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.
|
9
packages/flutter_image/README.md
Normal file
9
packages/flutter_image/README.md
Normal file
@ -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
|
5
packages/flutter_image/lib/sample.dart
Normal file
5
packages/flutter_image/lib/sample.dart
Normal file
@ -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');
|
14
packages/flutter_image/pubspec.yaml
Normal file
14
packages/flutter_image/pubspec.yaml
Normal file
@ -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
|
12
packages/flutter_image/test/all_test.dart
Normal file
12
packages/flutter_image/test/all_test.dart
Normal file
@ -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', () {});
|
||||||
|
});
|
||||||
|
}
|
11
packages/flutter_image/todo.txt
Normal file
11
packages/flutter_image/todo.txt
Normal file
@ -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 :)
|
Reference in New Issue
Block a user