mirror of
https://github.com/immich-app/immich.git
synced 2025-06-20 22:11:01 -04:00
17 lines
495 B
Dart
17 lines
495 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
/// Log messages stored in the DB
|
|
const int kLogMessageLimit = 500;
|
|
|
|
/// Chunked asset sync size
|
|
const int kFullSyncChunkSize = 10000;
|
|
|
|
/// Headers
|
|
// Auth header
|
|
const String kImmichHeaderAuthKey = "x-immich-user-token";
|
|
const String kImmichHeaderDeviceModel = "deviceModel";
|
|
const String kImmichHeaderDeviceType = "deviceType";
|
|
|
|
/// Global ScaffoldMessengerKey to show snackbars
|
|
final GlobalKey<ScaffoldMessengerState> kScafMessengerKey = GlobalKey();
|