format
This commit is contained in:
parent
766b723405
commit
04bf332b83
4 changed files with 5 additions and 5 deletions
|
@ -133,7 +133,7 @@ class CollectionSearchDelegate {
|
|||
))
|
||||
.where((filter) => containQuery(filter.displayName ?? filter.album))
|
||||
.toList()
|
||||
..sort();
|
||||
..sort();
|
||||
return _buildFilterRow(
|
||||
context: context,
|
||||
title: context.l10n.searchSectionAlbums,
|
||||
|
|
|
@ -70,7 +70,7 @@ class XmpNamespace extends Equatable {
|
|||
})
|
||||
.whereNotNull()
|
||||
.toList()
|
||||
..sort((a, b) => compareAsciiUpperCaseNatural(a.displayKey, b.displayKey));
|
||||
..sort((a, b) => compareAsciiUpperCaseNatural(a.displayKey, b.displayKey));
|
||||
|
||||
final content = [
|
||||
if (props.isNotEmpty)
|
||||
|
|
|
@ -12,14 +12,14 @@ class FakeStorageService extends Fake implements StorageService {
|
|||
|
||||
@override
|
||||
Future<Set<StorageVolume>> getStorageVolumes() => SynchronousFuture({
|
||||
const StorageVolume(
|
||||
const StorageVolume(
|
||||
path: primaryPath,
|
||||
description: primaryDescription,
|
||||
isPrimary: true,
|
||||
isRemovable: false,
|
||||
state: 'fake',
|
||||
),
|
||||
const StorageVolume(
|
||||
const StorageVolume(
|
||||
path: removablePath,
|
||||
description: removableDescription,
|
||||
isPrimary: false,
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
const sourcePicturesDir = 'test_driver/assets/';
|
||||
const targetPicturesDir = '/sdcard/Pictures/Aves Test Driver/';
|
||||
const targetPicturesDirEmulated = '/storage/emulated/0/Pictures/Aves Test Driver';
|
||||
const targetPicturesDirEmulated = '/storage/emulated/0/Pictures/Aves Test Driver';
|
||||
|
|
Loading…
Reference in a new issue