Skip to content

Commit 2936299

Browse files
committed
🚀 Bind new pick method
1 parent 36a130f commit 2936299

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

example/lib/constants/picker_method.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ class PickMethod {
381381

382382
factory PickMethod.pathNameBuilder(int maxAssetsCount) {
383383
return PickMethod(
384-
icon: '#️⃣',
384+
icon: '🈸',
385385
name: 'Path name builder',
386386
description: 'Add 🍭 after paths name.',
387387
method: (BuildContext context, List<AssetEntity> assets) {

example/lib/pages/multi_assets_page.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ class _MultiAssetsPageState extends State<MultiAssetsPage>
5353
),
5454
PickMethod.noPreview(maxAssetsCount),
5555
PickMethod.customizableTheme(maxAssetsCount),
56+
PickMethod.pathNameBuilder(maxAssetsCount),
5657
PickMethod.customFilterOptions(maxAssetsCount),
5758
PickMethod.preventGIFPicked(maxAssetsCount),
5859
PickMethod.keepScrollOffset(

example/lib/pages/single_assets_page.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ class _SingleAssetPageState extends State<SingleAssetPage>
4242
PickMethod.preventGIFPicked(maxAssetsCount),
4343
PickMethod.noPreview(maxAssetsCount),
4444
PickMethod.customizableTheme(maxAssetsCount),
45+
PickMethod.pathNameBuilder(maxAssetsCount),
4546
];
4647
}
4748

0 commit comments

Comments
 (0)