Skip to content

Commit

Permalink
馃摑 Make copyrights consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexV525 committed May 9, 2022
1 parent bab9e65 commit 86bb8ae
Show file tree
Hide file tree
Showing 17 changed files with 68 additions and 64 deletions.
4 changes: 4 additions & 0 deletions example/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!-- Copyright 2019 The FlutterCandies author. All rights reserved.
Use of this source code is governed by an Apache license
that can be found in the LICENSE file. -->

# WeChat Assets Picker example

This is the example for the `wechat_assets_picker` package.
8 changes: 4 additions & 4 deletions example/lib/constants/custom_pick_method.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2021/5/10 16:56
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'package:flutter/widgets.dart';

@immutable
Expand Down
8 changes: 4 additions & 4 deletions example/lib/constants/extensions.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2020/8/19 14:12
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart'
show Color, Colors, HSLColor, MaterialColor;

Expand Down
8 changes: 4 additions & 4 deletions example/lib/constants/page_mixin.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2021/7/13 11:46
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'package:flutter/widgets.dart';
import 'package:wechat_assets_picker/wechat_assets_picker.dart'
show
Expand Down
8 changes: 4 additions & 4 deletions example/lib/constants/picker_method.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2020-05-30 20:56
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';
import 'package:wechat_assets_picker/wechat_assets_picker.dart';
import 'package:wechat_camera_picker/wechat_camera_picker.dart';
Expand Down
8 changes: 4 additions & 4 deletions example/lib/constants/screens.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2020/8/19 10:29
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'dart:ui' as ui;

import 'package:flutter/services.dart';
Expand Down
8 changes: 4 additions & 4 deletions example/lib/customs/custom_picker_page.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2020-11-01 02:05
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';

import '../constants/custom_pick_method.dart';
Expand Down
8 changes: 4 additions & 4 deletions example/lib/customs/pickers/directory_file_asset_picker.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2021/5/10 16:44
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'dart:io';
import 'dart:math' as math;
import 'dart:typed_data';
Expand Down
8 changes: 4 additions & 4 deletions example/lib/customs/pickers/multi_tabs_assets_picker.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2022/2/10 09:57
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'dart:io';
import 'dart:math' as math;

Expand Down
8 changes: 4 additions & 4 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2020/5/30 15:39
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
Expand Down
8 changes: 4 additions & 4 deletions example/lib/pages/home_page.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2020-05-31 21:38
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';
import 'package:flutter/semantics.dart';
import 'package:flutter/services.dart';
Expand Down
8 changes: 4 additions & 4 deletions example/lib/pages/multi_assets_page.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2020-05-31 20:21
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';
import 'package:wechat_assets_picker/wechat_assets_picker.dart';

Expand Down
8 changes: 4 additions & 4 deletions example/lib/pages/single_assets_page.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2020-05-31 21:17
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';
import 'package:wechat_assets_picker/wechat_assets_picker.dart'
show AssetEntity;
Expand Down
8 changes: 4 additions & 4 deletions example/lib/pages/splash_page.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2020-05-31 21:36
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';
import 'package:package_info_plus/package_info_plus.dart';

Expand Down
8 changes: 4 additions & 4 deletions example/lib/widgets/asset_widget_builder.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2021/7/13 10:40
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';
import 'package:wechat_assets_picker/wechat_assets_picker.dart'
show AssetEntity, AssetEntityImageProvider, AssetType;
Expand Down
8 changes: 4 additions & 4 deletions example/lib/widgets/method_list_view.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2021/7/13 11:00
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';

import '../constants/picker_method.dart';
Expand Down
8 changes: 4 additions & 4 deletions example/lib/widgets/selected_assets_list_view.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///
/// @Author Alex (https://github.com/AlexV525)
/// [Date] 2021/7/13 10:51
///
// Copyright 2019 The FlutterCandies author. All rights reserved.
// Use of this source code is governed by an Apache license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';
import 'package:wechat_assets_picker/wechat_assets_picker.dart'
show AssetEntity, AssetPicker, AssetPickerViewer;
Expand Down

0 comments on commit 86bb8ae

Please sign in to comment.