mirror of
https://github.com/immich-app/immich.git
synced 2025-06-20 22:11:01 -04:00
12 lines
204 B
Dart
12 lines
204 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
@immutable
|
|
class SizeConstants {
|
|
const SizeConstants._();
|
|
|
|
static const s = 8.0;
|
|
static const m = 16.0;
|
|
static const l = 32.0;
|
|
static const xl = 64.0;
|
|
}
|