update MediumType to image in example app

This commit is contained in:
Wenqi Li 2020-08-22 17:01:56 +08:00
parent 04249eeab3
commit 1fcc2d8663

View File

@ -31,7 +31,7 @@ class _MyAppState extends State<MyApp> {
Future<void> initAsync() async {
if (await _promptPermissionSetting()) {
List<Album> collections =
await PhotoGallery.listAlbums(mediumType: MediumType.video);
await PhotoGallery.listAlbums(mediumType: MediumType.image);
setState(() {
_collections = collections;
_loading = false;