mirror of
https://github.com/immich-app/immich.git
synced 2025-10-31 18:47:09 -04:00
* thumbnail widget * use animation ticker, improvements * use static thumbnail resolution for now * fix android sample size * free memory sooner * formatting * tweaks * wait for disposal * remove debug prints * take two on animation * fix * remote constructor * missed one * unused imports * unnecessary import * formatting
11 lines
469 B
Dart
11 lines
469 B
Dart
import 'dart:ui';
|
|
|
|
const double kTimelineHeaderExtent = 80.0;
|
|
const Size kTimelineFixedTileExtent = Size.square(256);
|
|
const Size kThumbnailResolution = kTimelineFixedTileExtent; // TODO: make the resolution vary based on actual tile size
|
|
const double kTimelineSpacing = 2.0;
|
|
const int kTimelineColumnCount = 3;
|
|
|
|
const Duration kTimelineScrubberFadeInDuration = Duration(milliseconds: 300);
|
|
const Duration kTimelineScrubberFadeOutDuration = Duration(milliseconds: 800);
|