Skip to content

Commit 3028cae

Browse files
committed
🎨 Code format.
1 parent f6f26d0 commit 3028cae

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed

example/lib/pages/splash_page.dart

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ class _SplashPageState extends State<SplashPage> {
2828
Navigator.of(context).push(
2929
PageRouteBuilder<void>(
3030
pageBuilder: (
31-
BuildContext _,
32-
Animation<double> __,
33-
Animation<double> ___,
34-
) {
31+
BuildContext _,
32+
Animation<double> __,
33+
Animation<double> ___,
34+
) {
3535
return const HomePage();
3636
},
3737
transitionsBuilder: (
38-
BuildContext _,
39-
Animation<double> animation,
40-
Animation<double> secondaryAnimation,
41-
Widget child,
42-
) {
38+
BuildContext _,
39+
Animation<double> animation,
40+
Animation<double> secondaryAnimation,
41+
Widget child,
42+
) {
4343
return FadeTransition(
4444
opacity: animation,
4545
child: child,

example/pubspec.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ dependencies:
1010
flutter:
1111
sdk: flutter
1212

13-
flutter_common_exports:
14-
git:
15-
url: "https://github.com/AlexVincent525/flutter_common_exports.git"
16-
ref: "1c1cd874"
1713
wechat_assets_picker:
1814
path: ../
1915

lib/wechat_assets_picker.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
library wechat_assets_picker;
22

3-
export 'package:photo_manager/photo_manager.dart' show AssetEntity, RequestType, AssetType;
3+
export 'package:photo_manager/photo_manager.dart'
4+
show AssetEntity, RequestType, AssetType;
45

56
export 'src/delegates/sort_path_delegate.dart';
67
export 'src/delegates/text_delegate.dart';

0 commit comments

Comments
 (0)