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
@@ -131,8 +131,8 @@ class _FixedSegmentRow extends ConsumerWidget {
future: timelineService.loadAssets(assetIndex, assetCount),
builder: (context, snapshot) {
return _buildAssetRow(context, snapshot.data, timelineService);
},
);
},
);
}
}
@@ -217,14 +217,12 @@ class _AssetTileWidget extends ConsumerWidget {
return GestureDetector(
onTap: () => lockSelection || asset == null ? null : _handleOnTap(context, ref, assetIndex, asset, heroOffset),
onLongPress: () => lockSelection || asset == null
? null
: _handleOnLongPress(ref, asset),
child: ThumbnailTile(
asset,
lockSelection: lockSelection,
showStorageIndicator: showStorageIndicator,
heroOffset: heroOffset,
onLongPress: () => lockSelection || asset == null ? null : _handleOnLongPress(ref, asset),
child: ThumbnailTile(
asset,
lockSelection: lockSelection,
showStorageIndicator: showStorageIndicator,
heroOffset: heroOffset,
),
);
}