Ver código fonte

add single_asset

lucky1213 4 anos atrás
pai
commit
35370a6859
5 arquivos alterados com 99 adições e 12 exclusões
  1. 25
    4
      example/lib/main.dart
  2. 36
    0
      lib/photo.dart
  3. 11
    2
      lib/src/ui/page/photo_main_page.dart
  4. 26
    5
      pubspec.lock
  5. 1
    1
      pubspec.yaml

+ 25
- 4
example/lib/main.dart Ver arquivo

105
                 text: "photo",
105
                 text: "photo",
106
                 onTap: () => _pickAsset(PickType.onlyImage),
106
                 onTap: () => _pickAsset(PickType.onlyImage),
107
               ),
107
               ),
108
+              IconTextButton(
109
+                icon: Icons.photo,
110
+                text: "single photo",
111
+                onTap: () => _pickAsset(PickType.onlyImage, single: true),
112
+              ),
108
               IconTextButton(
113
               IconTextButton(
109
                 icon: Icons.videocam,
114
                 icon: Icons.videocam,
110
                 text: "video",
115
                 text: "video",
162
     _pickAsset(PickType.all, pathList: assetPathList);
167
     _pickAsset(PickType.all, pathList: assetPathList);
163
   }
168
   }
164
 
169
 
165
-  void _pickAsset(PickType type, {List<AssetPathEntity> pathList}) async {
170
+  void _pickAsset(PickType type, {List<AssetPathEntity> pathList, bool single = false}) async {
166
     /// context is required, other params is optional.
171
     /// context is required, other params is optional.
167
     /// context is required, other params is optional.
172
     /// context is required, other params is optional.
168
     /// context is required, other params is optional.
173
     /// context is required, other params is optional.
169
     List<AssetPathEntity> pathList2 = await PhotoManager.getAssetPathList(
174
     List<AssetPathEntity> pathList2 = await PhotoManager.getAssetPathList(
170
         hasAll: true, type: RequestType.image,);
175
         hasAll: true, type: RequestType.image,);
171
-    PickedEntity entity = await PhotoPicker.pickAsset(
176
+        if (!single) {
177
+          PickedEntity entity = await PhotoPicker.pickAsset(
172
       context: context,
178
       context: context,
173
       padding: 4.0,
179
       padding: 4.0,
174
       itemRadio: 1,
180
       itemRadio: 1,
175
-      maxSelected: 2,
181
+      maxSelected: 9,
176
       provider: I18nProvider.english,
182
       provider: I18nProvider.english,
177
       rowCount: 4,
183
       rowCount: 4,
178
       thumbSize: 150,
184
       thumbSize: 150,
179
       sortDelegate: SortDelegate.common,
185
       sortDelegate: SortDelegate.common,
180
-      pickType: PickType.onlyVideo,
186
+      pickType: type,
181
       photoPathList: pathList2,
187
       photoPathList: pathList2,
182
     );
188
     );
183
 
189
 
197
       Navigator.push(context,
203
       Navigator.push(context,
198
           MaterialPageRoute(builder: (_) => PreviewPage(list: preview)));
204
           MaterialPageRoute(builder: (_) => PreviewPage(list: preview)));
199
     }
205
     }
206
+        } else {
207
+          final AssetEntity asset = await PhotoPicker.pickSingleAsset(
208
+            context: context,
209
+            padding: 4.0,
210
+            itemRadio: 1,
211
+            provider: I18nProvider.english,
212
+            rowCount: 4,
213
+            thumbSize: 150,
214
+            sortDelegate: SortDelegate.common,
215
+            pickType: type,
216
+            photoPathList: pathList2,
217
+          );
218
+          print(asset);
219
+        }
220
+    
200
     setState(() {});
221
     setState(() {});
201
   }
222
   }
202
 
223
 

+ 36
- 0
lib/photo.dart Ver arquivo

71
     List<AssetPathEntity> photoPathList,
71
     List<AssetPathEntity> photoPathList,
72
     List<AssetEntity> pickedAssetList,
72
     List<AssetEntity> pickedAssetList,
73
   }) {
73
   }) {
74
+    assert(maxSelected != 0, "maxSelected must be not 0");
74
     assert(provider != null, "provider must be not null");
75
     assert(provider != null, "provider must be not null");
75
     assert(context != null, "context must be not null");
76
     assert(context != null, "context must be not null");
76
     assert(pickType != null, "pickType must be not null");
77
     assert(pickType != null, "pickType must be not null");
102
     );
103
     );
103
   }
104
   }
104
 
105
 
106
+
107
+  static Future<AssetEntity> pickSingleAsset({
108
+    @required BuildContext context,
109
+    int rowCount = 4,
110
+    double padding = 1,
111
+    double itemRadio = 1.0,
112
+    int thumbSize = 180,
113
+    PhotoTheme theme,
114
+    I18nProvider provider = I18nProvider.chinese,
115
+    SortDelegate sortDelegate,
116
+    LoadingDelegate loadingDelegate,
117
+    PickType pickType = PickType.all,
118
+    List<AssetPathEntity> photoPathList,
119
+  }) async {
120
+    final PickedEntity result = await PhotoPicker.pickAsset(
121
+      context: context,
122
+      rowCount: rowCount,
123
+      maxSelected: 1,
124
+      padding: padding,
125
+      itemRadio: itemRadio,
126
+      thumbSize: thumbSize,
127
+      theme: theme,
128
+      provider: provider,
129
+      sortDelegate: sortDelegate,
130
+      loadingDelegate: loadingDelegate,
131
+      pickType: pickType,
132
+      photoPathList: photoPathList,
133
+      pickedAssetList: [],
134
+    );
135
+    if (result.asset.isNotEmpty) {
136
+      return result.asset[0];
137
+    }
138
+    return null;
139
+  }
140
+
105
   static Future<File> pickCamera({
141
   static Future<File> pickCamera({
106
     double maxWidth,
142
     double maxWidth,
107
     double maxHeight,
143
     double maxHeight,

+ 11
- 2
lib/src/ui/page/photo_main_page.dart Ver arquivo

241
           ),
241
           ),
242
         ),
242
         ),
243
         body: _buildBody(),
243
         body: _buildBody(),
244
-        bottomNavigationBar: _BottomWidget(
244
+        bottomNavigationBar: options.maxSelected > 1 ? _BottomWidget(
245
           key: scaffoldKey,
245
           key: scaffoldKey,
246
           provider: i18nProvider,
246
           provider: i18nProvider,
247
           options: options,
247
           options: options,
249
           onTapSure: selectedList.isEmpty ? null : sure,
249
           onTapSure: selectedList.isEmpty ? null : sure,
250
           selectedProvider: this,
250
           selectedProvider: this,
251
           galleryListProvider: this,
251
           galleryListProvider: this,
252
-        ),
252
+        ) : null,
253
       ),
253
       ),
254
     );
254
     );
255
   }
255
   }
403
               loadingDelegate: options.loadingDelegate,
403
               loadingDelegate: options.loadingDelegate,
404
               badgeDelegate: options.badgeDelegate,
404
               badgeDelegate: options.badgeDelegate,
405
             ),
405
             ),
406
+            if (options.maxSelected > 1)
406
             _buildMask(containsEntity(data)),
407
             _buildMask(containsEntity(data)),
408
+            if (options.maxSelected > 1)
407
             _buildSelected(data),
409
             _buildSelected(data),
408
           ],
410
           ],
409
         ),
411
         ),
494
   }
496
   }
495
 
497
 
496
   void _onItemClick(AssetEntity data, int index) {
498
   void _onItemClick(AssetEntity data, int index) {
499
+    if (options.maxSelected == 1) {
500
+      widget.onClose?.call(PickedEntity(
501
+        asset: [data],
502
+        isFullImage: true,
503
+      ));
504
+      return;
505
+    }
497
     var result = PhotoPreviewResult();
506
     var result = PhotoPreviewResult();
498
     isPushed = true;
507
     isPushed = true;
499
     Navigator.of(context).push(
508
     Navigator.of(context).push(

+ 26
- 5
pubspec.lock Ver arquivo

54
       name: flutter_plugin_android_lifecycle
54
       name: flutter_plugin_android_lifecycle
55
       url: "https://pub.flutter-io.cn"
55
       url: "https://pub.flutter-io.cn"
56
     source: hosted
56
     source: hosted
57
-    version: "1.0.7"
57
+    version: "1.0.8"
58
   flutter_test:
58
   flutter_test:
59
     dependency: "direct dev"
59
     dependency: "direct dev"
60
     description: flutter
60
     description: flutter
61
     source: sdk
61
     source: sdk
62
     version: "0.0.0"
62
     version: "0.0.0"
63
+  http:
64
+    dependency: transitive
65
+    description:
66
+      name: http
67
+      url: "https://pub.flutter-io.cn"
68
+    source: hosted
69
+    version: "0.12.1"
70
+  http_parser:
71
+    dependency: transitive
72
+    description:
73
+      name: http_parser
74
+      url: "https://pub.flutter-io.cn"
75
+    source: hosted
76
+    version: "3.1.4"
63
   image_picker:
77
   image_picker:
64
     dependency: "direct main"
78
     dependency: "direct main"
65
     description:
79
     description:
66
       name: image_picker
80
       name: image_picker
67
       url: "https://pub.flutter-io.cn"
81
       url: "https://pub.flutter-io.cn"
68
     source: hosted
82
     source: hosted
69
-    version: "0.6.6+1"
83
+    version: "0.6.7"
70
   image_picker_platform_interface:
84
   image_picker_platform_interface:
71
     dependency: transitive
85
     dependency: transitive
72
     description:
86
     description:
73
       name: image_picker_platform_interface
87
       name: image_picker_platform_interface
74
       url: "https://pub.flutter-io.cn"
88
       url: "https://pub.flutter-io.cn"
75
     source: hosted
89
     source: hosted
76
-    version: "1.0.0"
90
+    version: "1.1.0"
77
   matcher:
91
   matcher:
78
     dependency: transitive
92
     dependency: transitive
79
     description:
93
     description:
102
       url: "https://pub.flutter-io.cn"
116
       url: "https://pub.flutter-io.cn"
103
     source: hosted
117
     source: hosted
104
     version: "1.7.0"
118
     version: "1.7.0"
119
+  pedantic:
120
+    dependency: transitive
121
+    description:
122
+      name: pedantic
123
+      url: "https://pub.flutter-io.cn"
124
+    source: hosted
125
+    version: "1.9.0"
105
   photo_manager:
126
   photo_manager:
106
     dependency: "direct main"
127
     dependency: "direct main"
107
     description:
128
     description:
122
       name: provider
143
       name: provider
123
       url: "https://pub.flutter-io.cn"
144
       url: "https://pub.flutter-io.cn"
124
     source: hosted
145
     source: hosted
125
-    version: "4.0.5"
146
+    version: "4.1.2"
126
   sky_engine:
147
   sky_engine:
127
     dependency: transitive
148
     dependency: transitive
128
     description: flutter
149
     description: flutter
186
     version: "2.0.8"
207
     version: "2.0.8"
187
 sdks:
208
 sdks:
188
   dart: ">=2.7.0 <3.0.0"
209
   dart: ">=2.7.0 <3.0.0"
189
-  flutter: ">=1.12.13 <2.0.0"
210
+  flutter: ">=1.16.0 <2.0.0"

+ 1
- 1
pubspec.yaml Ver arquivo

1
 name: photo
1
 name: photo
2
 description: image picker, multi picker support video/icloud asset, use flutter as ui, if you want to build custom ui, you just use photo_manager.
2
 description: image picker, multi picker support video/icloud asset, use flutter as ui, if you want to build custom ui, you just use photo_manager.
3
-version: 0.5.1
3
+version: 0.5.2
4
 author: caijinglong<cjl_spy@163.com>
4
 author: caijinglong<cjl_spy@163.com>
5
 homepage: https://github.com/CaiJingLong/flutter_photo
5
 homepage: https://github.com/CaiJingLong/flutter_photo
6
 
6