Language: English | ไธญๆ
An assets' picker (audio/video/image picker) based on the WeChat's UI, using photo_manager for asset implementation, extended_image for image preview, and provider to help control the state of the picker.
To take a photo or a video for assets, please check the detailed usage in the example, and head over to wechat_camera_picker.
Current WeChat version that UI based on: 8.x UI designs will be updated following the WeChat update in anytime.
See Migration Guide.
- โป๏ธ Fully implementable with delegates override
- ๐ 99% similar to WeChat style
- โก๏ธ Adjustable performance according to parameters
- ๐ท Image asset support
- ๐ฌ HEIF Image type support
- ๐ฅ Video asset support
- ๐ถ Audio asset support
โ ๏ธ Due to limitations on iOS/macOS, audio can only be fetched within the sandbox
- 1๏ธโฃ Single asset mode
- ๐ฑ i18n support
- โช RTL language support
- โ Special item builder support
- ๐ Custom sort path delegate support
- ๐ Custom text delegate support
- โณ Custom filter options support
- ๐ Fully customizable theme
- ๐ป macOS support
The package works closely with the photo_manager plugin, and most behaviors are controlled by the plugin. When you have questions about related APIs and behaviors, check photo_manager's API docs for more details.
Most usages are detailed covered by the example. Please walk through the example carefully before you have any questions.
2.8.0 | 2.10.0 | 3.0.0 | 3.3.0 | |
---|---|---|---|---|
8.0.0+ | N/A | N/A | โ | โ |
7.3.0+ | N/A | N/A | โ | โ |
7.0.0+ | โ | โ | โ | โ |
6.3.0+ | โ | โ | โ | โ |
If you got a resolve conflict
error when running flutter pub get
,
please use dependency_overrides
to fix it.
Run flutter pub add wechat_assets_picker
,
or add wechat_assets_picker
to pubspec.yaml
dependencies manually.
dependencies:
wechat_assets_picker: ^latest_version
Then import the package in your code:
import 'package:wechat_assets_picker/wechat_assets_picker.dart';
If you found some warning logs with Glide
appearing,
then the main project needs an implementation of AppGlideModule
.
See Generated API docs.
Name | Required | Declared | Max API Level | Others |
---|---|---|---|---|
READ_EXTERNAL_STORAGE |
YES | YES | 32 | |
WRITE_EXTERNAL_STORAGE |
NO | NO | 29 | |
ACCESS_MEDIA_LOCATION |
YES* | NO | N/A | Required when reading EXIF |
READ_MEDIA_IMAGES |
YES* | YES | N/A | Required when reading images |
READ_MEDIA_VIDEO |
YES* | YES | N/A | Required when reading videos |
READ_MEDIA_AUDIO |
YES* | YES | N/A | Required when reading audios |
If you're targeting Android SDK 33+, and you don't need to load photos, videos or audios, consider removing relevant permission in your apps, more specifically:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.your.app">
<!-- Remove READ_MEDIA_IMAGES if you don't need to load photos. -->
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" tools:node="remove" />
<!-- Remove READ_MEDIA_VIDEO if you don't need to load videos. -->
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" tools:node="remove" />
<!-- Remove READ_MEDIA_AUDIO if you don't need to load audios. -->
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" tools:node="remove" />
</manifest>
- Platform version has to be at least 9.0.
Modify
ios/Podfile
and update accordingly.platform :ios, '9.0'
- Add the following content to
info.plist
.
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<key>NSPhotoLibraryUsageDescription</key>
<string>Replace with your permission description.</string>
- Platform version has to be at least 10.15.
Modify
macos/Podfile
and update accordingly.platform :osx, '10.15'
- Set the minimum deployment target to 10.15.
Use XCode to open
macos/Runner.xcworkspace
. - Follow the iOS instructions and modify
info.plist
accordingly.
final List<AssetEntity>? result = await AssetPicker.pickAssets(context);
Use AssetPickerConfig
for more picking behaviors.
final List<AssetEntity>? result = await AssetPicker.pickAssets(
context,
pickerConfig: const AssetPickerConfig(),
);
Fields in AssetPickerConfig
:
Name | Type | Description | Default |
---|---|---|---|
selectedAssets | List<AssetEntity>? |
Selected assets. Prevent duplicate selection. | null |
maxAssets | int |
Maximum asset that the picker can pick. | 9 |
pageSize | int? |
Number of assets per page. Must be a multiple of gridCount . |
80 |
gridThumbnailSize | ThumbnailSize |
Thumbnail size for the grid's item. | ThumbnailSize.square(200) |
pathThumbnailSize | ThumbnailSize |
Thumbnail size for the path selector. | ThumbnailSize.square(80) |
previewThumbnailSize | ThumbnailSize? |
Preview thumbnail size in the viewer. | null |
requestType | RequestType |
Request type for picker. | RequestType.common |
specialPickerType | SpecialPickerType? |
Provides the option to integrate a custom picker type. | null |
keepScrollOffset | bool |
Whether the picker should save the scroll offset between pushes and pops. | null |
sortPathDelegate | SortPathDelegate<AssetPathEntity>? |
Path entities sort delegate for the picker, sort paths as you want. | CommonSortPathDelegate |
sortPathsByModifiedDate | bool |
Whether to allow sort delegates to sort paths with FilterOptionGroup.containsPathModified . |
false |
filterOptions | FilterOptionGroup? |
Allow users to customize assets filter options. | null |
gridCount | int |
Grid count in picker. | 4 |
themeColor | Color? |
Main theme color for the picker. | Color(0xff00bc56) |
pickerTheme | ThemeData? |
Theme data provider for the picker and the viewer. | null |
textDelegate | AssetPickerTextDelegate? |
Text delegate for the picker, for customize the texts. | AssetPickerTextDelegate() |
specialItemPosition | SpecialItemPosition |
Allow users set a special item in the picker with several positions. | SpecialItemPosition.none |
specialItemBuilder | SpecialItemBuilder? |
The widget builder for the special item. | null |
loadingIndicatorBuilder | IndicatorBuilder? |
Indicates the loading status for the builder. | null |
selectPredicate | AssetSelectPredicate |
Predicate whether an asset can be selected or unselected. | null |
shouldRevertGrid | bool? |
Whether the assets grid should revert. | null |
limitedPermissionOverlayPredicate | LimitedPermissionOverlayPredicate? |
Predicate whether the limited permission overlay should be displayed. | null |
pathNameBuilder | PathNameBuilder<AssetPathEntity>? |
Build customized path name. | null |
TL;DR, we've put multiple common usage with the packages in the example.
When you're picking assets, the package will obtain the Locale?
from your BuildContext
, and return the corresponding text delegate
of the current language.
Make sure you have a valid Locale
in your widget tree that can be accessed
from the BuildContext
. Otherwise, the default Chinese delegate will be used.
Embedded text delegates languages are:
- ็ฎไฝไธญๆ (default)
- English
- ืืขืืจืืช
- Deutsche
- ะะพะบะฐะปะธะทะฐัะธั
- ๆฅๆฌ่ช
- ู ุฉ ุงูุนุฑุจูุฉ
- Dรฉlรฉguรฉ
If you want to use a custom/fixed text delegate, pass it through the
AssetPickerConfig.textDelegate
.
You can use the keepScrollOffset
feature
only with the pickAssetsWithDelegate
method.
See the Keep scroll offset
pick method
in the example for how to implement it.
For more details about custom delegates,
head over to example/lib/customs
.
You can both found List<PickMethod> pickMethods
in
example/lib/pages/multi_assets_page.dart
and example/lib/pages/single_assets_page.dart
,
which provide methods in multiple picking and single picking mode.
Assets will be stored temporary and displayed at the below of the page.
The maximum assets limit is 9
in the multiple picking page,
and you can modify it as you wish.
Some methods can only work with multiple mode, such as "WeChat Moment".
Only one and maximum to one asset can be picked at once.
You can try custom pickers with the "Custom" page.
We've defined a picker that integrates with Directory
and File
(completely out of the photo_manager
scope),
and a picker with multiple tabs switching.
You can submit PRs to create your own implementation
if you found your implementation might be useful for others.
See Contribute custom implementations for more details.
The AssetImage
and AssetEntityImageProvider
can display the thumb image
of images & videos, and the original data of image.
Use it like a common Image
and ImageProvider
.
/// AssetEntityImage
AssetEntityImage(asset, isOriginal: false);
/// AssetEntityImageProvider
Image(image: AssetEntityImageProvider(asset, isOriginal: false));
/// Register callback.
AssetPicker.registerObserve();
/// Unregister callback.
AssetPicker.unregisterObserve();
AssetPickerBuilderDelegate
, AssetPickerViewerBuilderDelegate
,
AssetPickerProvider
and AssetPickerViewerProvider
are all exposed and overridable.
You can extend them and use your own
type with generic type <A: Asset, P: Path>
,
then implement abstract methods. See the Custom
page
in the example which has an implementation
based on <File, Directory>
types.
See photo_manager#561 for more details.
You don't need it (might be).
You can always request the File
object with
entity.file
or entity.originFile
,
and entity.originBytes
for Uint8List
.
If you still need path after requested the File
, get it through file.path
.
final File file = await entity.file; // Thumbnails or edited files.
final File originFile = await entity.originFile; // Original files.
final String path = file.path;
final String originPath = originFile.path;
In order to combine this package with camera shooting or something related,
there's a solution about how to create an AssetEntity
with File
or Uint8List
object.
final File file = your_file; // Your `File` object
final String path = file.path;
final AssetEntity fileEntity = await PhotoManager.editor.saveImageWithPath(
path,
title: basename(path),
); // Saved in the device then create an AssetEntity
final Uint8List data = your_data; // Your `Uint8List` object
final AssetEntity imageEntity = await PhotoManager.editor.saveImage(
file.path,
title: 'title_with_extension.jpg',
); // Saved in the device then create an AssetEntity
Notice: If you don't want to keep the file in your device,
use File
for operations as much as possible.
A deletion operation might call system popups with some OS:
final List<String> result = await PhotoManager.editor.deleteWithIds(
<String>[entity.id],
);
ref: photo_manager#insert-new-item
W/Glide (21133): Failed to find GeneratedAppGlideModule. You should include an annotationProcessor compile dependency on com.github.bumptech.glide:compiler in you application ana a @GlideModule annotated AppGlideModule implementation or LibraryGlideModules will be silently ignored.
Glide
needs annotation to keep singleton,
prevent conflict between instances and versions,
so while the photo manager uses Glide
to implement image features,
the project which import this should define its own AppGlideModule
.
See Android section for implementation.
Many thanks to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcomed!!
Every aspect of IntelliJ IDEA has been designed to maximize developer productivity. Together, intelligent coding assistance and ergonomic design make development not only productive but also enjoyable.
Thanks to JetBrains for allocating free open-source licenses for IDEs such as IntelliJ IDEA.