mirror of
https://github.com/immich-app/immich.git
synced 2026-03-01 01:59:06 +03:00
* feat: html text * feat: mobile ui showcase (#25827) * feat: mobile ui showcase * remove showcase from main app * update fonts * update code to be loaded from asset * fix ci --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> # Conflicts: # mobile/lib/widgets/common/immich_sliver_app_bar.dart --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
17 lines
475 B
Dart
17 lines
475 B
Dart
const String appTitle = '@immich/ui';
|
|
|
|
class LayoutConstants {
|
|
static const double sidebarWidth = 220.0;
|
|
|
|
static const double gridSpacing = 16.0;
|
|
static const double gridAspectRatio = 2.5;
|
|
|
|
static const double borderRadiusSmall = 6.0;
|
|
static const double borderRadiusMedium = 8.0;
|
|
static const double borderRadiusLarge = 12.0;
|
|
|
|
static const double iconSizeSmall = 16.0;
|
|
static const double iconSizeMedium = 18.0;
|
|
static const double iconSizeLarge = 20.0;
|
|
}
|