restore xcode settings

formatting

restore xcode settings

fix rebase
This commit is contained in:
mertalev
2025-07-24 14:25:25 +03:00
parent fc6415cdc3
commit 97a6c6d7a0
18 changed files with 255 additions and 908 deletions
@@ -42,8 +42,7 @@ class ThumbnailTile extends ConsumerWidget {
final isSelected = ref.watch(
multiSelectProvider.select((multiselect) => multiselect.selectedAssets.contains(asset)),
);
final isScrubbing =
ref.watch(timelineStateProvider.select((state) => state.isScrubbing));
final isScrubbing = ref.watch(timelineStateProvider.select((state) => state.isScrubbing));
final borderStyle = lockSelection
? BoxDecoration(
@@ -79,9 +78,7 @@ class ThumbnailTile extends ConsumerWidget {
tag: '${asset?.heroTag ?? ''}_$heroIndex',
child: Thumbnail.fromBaseAsset(
asset: asset,
thumbhashMode: isScrubbing
? ThumbhashMode.only
: ThumbhashMode.enabled,
thumbhashMode: isScrubbing ? ThumbhashMode.only : ThumbhashMode.enabled,
),
),
),