From 86bb8aef72b5075ddb4ffb061e2fc100dbd7bfe2 Mon Sep 17 00:00:00 2001 From: Alex Li Date: Mon, 9 May 2022 20:23:07 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Make=20copyrights=20consistent?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- example/README.md | 4 ++++ example/lib/constants/custom_pick_method.dart | 8 ++++---- example/lib/constants/extensions.dart | 8 ++++---- example/lib/constants/page_mixin.dart | 8 ++++---- example/lib/constants/picker_method.dart | 8 ++++---- example/lib/constants/screens.dart | 8 ++++---- example/lib/customs/custom_picker_page.dart | 8 ++++---- .../lib/customs/pickers/directory_file_asset_picker.dart | 8 ++++---- example/lib/customs/pickers/multi_tabs_assets_picker.dart | 8 ++++---- example/lib/main.dart | 8 ++++---- example/lib/pages/home_page.dart | 8 ++++---- example/lib/pages/multi_assets_page.dart | 8 ++++---- example/lib/pages/single_assets_page.dart | 8 ++++---- example/lib/pages/splash_page.dart | 8 ++++---- example/lib/widgets/asset_widget_builder.dart | 8 ++++---- example/lib/widgets/method_list_view.dart | 8 ++++---- example/lib/widgets/selected_assets_list_view.dart | 8 ++++---- 17 files changed, 68 insertions(+), 64 deletions(-) diff --git a/example/README.md b/example/README.md index 9bda381d..450f0dca 100644 --- a/example/README.md +++ b/example/README.md @@ -1,3 +1,7 @@ + + # WeChat Assets Picker example This is the example for the `wechat_assets_picker` package. diff --git a/example/lib/constants/custom_pick_method.dart b/example/lib/constants/custom_pick_method.dart index 469b9aca..d68884b6 100644 --- a/example/lib/constants/custom_pick_method.dart +++ b/example/lib/constants/custom_pick_method.dart @@ -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 diff --git a/example/lib/constants/extensions.dart b/example/lib/constants/extensions.dart index 04c9e48f..47f8642d 100644 --- a/example/lib/constants/extensions.dart +++ b/example/lib/constants/extensions.dart @@ -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; diff --git a/example/lib/constants/page_mixin.dart b/example/lib/constants/page_mixin.dart index 5d47bc46..0dc4f45d 100644 --- a/example/lib/constants/page_mixin.dart +++ b/example/lib/constants/page_mixin.dart @@ -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 diff --git a/example/lib/constants/picker_method.dart b/example/lib/constants/picker_method.dart index a22e4599..4f96030b 100644 --- a/example/lib/constants/picker_method.dart +++ b/example/lib/constants/picker_method.dart @@ -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'; diff --git a/example/lib/constants/screens.dart b/example/lib/constants/screens.dart index c3aa1cb9..62851cb5 100644 --- a/example/lib/constants/screens.dart +++ b/example/lib/constants/screens.dart @@ -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'; diff --git a/example/lib/customs/custom_picker_page.dart b/example/lib/customs/custom_picker_page.dart index 79cc2d3f..852617f7 100644 --- a/example/lib/customs/custom_picker_page.dart +++ b/example/lib/customs/custom_picker_page.dart @@ -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'; diff --git a/example/lib/customs/pickers/directory_file_asset_picker.dart b/example/lib/customs/pickers/directory_file_asset_picker.dart index 29b1aaeb..32197bb6 100644 --- a/example/lib/customs/pickers/directory_file_asset_picker.dart +++ b/example/lib/customs/pickers/directory_file_asset_picker.dart @@ -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'; diff --git a/example/lib/customs/pickers/multi_tabs_assets_picker.dart b/example/lib/customs/pickers/multi_tabs_assets_picker.dart index 94aa50cc..14a0fd18 100644 --- a/example/lib/customs/pickers/multi_tabs_assets_picker.dart +++ b/example/lib/customs/pickers/multi_tabs_assets_picker.dart @@ -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; diff --git a/example/lib/main.dart b/example/lib/main.dart index 13f189e1..e52ed6ca 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -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'; diff --git a/example/lib/pages/home_page.dart b/example/lib/pages/home_page.dart index 0f9474b6..664efa99 100644 --- a/example/lib/pages/home_page.dart +++ b/example/lib/pages/home_page.dart @@ -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'; diff --git a/example/lib/pages/multi_assets_page.dart b/example/lib/pages/multi_assets_page.dart index 0199c442..83225d77 100644 --- a/example/lib/pages/multi_assets_page.dart +++ b/example/lib/pages/multi_assets_page.dart @@ -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'; diff --git a/example/lib/pages/single_assets_page.dart b/example/lib/pages/single_assets_page.dart index 84753856..d4b1078c 100644 --- a/example/lib/pages/single_assets_page.dart +++ b/example/lib/pages/single_assets_page.dart @@ -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; diff --git a/example/lib/pages/splash_page.dart b/example/lib/pages/splash_page.dart index 34f97f37..a8cc6b9b 100644 --- a/example/lib/pages/splash_page.dart +++ b/example/lib/pages/splash_page.dart @@ -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'; diff --git a/example/lib/widgets/asset_widget_builder.dart b/example/lib/widgets/asset_widget_builder.dart index a3da4b2a..517b63a6 100644 --- a/example/lib/widgets/asset_widget_builder.dart +++ b/example/lib/widgets/asset_widget_builder.dart @@ -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; diff --git a/example/lib/widgets/method_list_view.dart b/example/lib/widgets/method_list_view.dart index ce650678..1d0f0c00 100644 --- a/example/lib/widgets/method_list_view.dart +++ b/example/lib/widgets/method_list_view.dart @@ -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'; diff --git a/example/lib/widgets/selected_assets_list_view.dart b/example/lib/widgets/selected_assets_list_view.dart index 38bdff7e..6f3b3e6a 100644 --- a/example/lib/widgets/selected_assets_list_view.dart +++ b/example/lib/widgets/selected_assets_list_view.dart @@ -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;