timeline monster

This commit is contained in:
shenlong-tanwen
2025-03-19 01:12:39 +05:30
parent 6311ecadd4
commit 3a4e9a0129
4 changed files with 296 additions and 13 deletions
@@ -36,7 +36,7 @@ class ImStaticGrid extends StatelessWidget {
),
itemBuilder: (_, i) {
if (isDragging) {
return const ImImagePlaceholder();
return const ImImagePlaceholder(width: 200, height: 200);
}
final asset = assetsSnap.isWaiting || assets == null
@@ -46,7 +46,7 @@ class ImStaticGrid extends StatelessWidget {
dimension: 200,
// Show Placeholder when drag scrolled
child: asset == null
? const ImImagePlaceholder()
? const ImImagePlaceholder(width: 200, height: 200)
: ImThumbnail(asset),
);
},