Files
immich/mobile-v2/lib/utils/constants/size_constants.dart
T
shenlong-tanwen 8f47645cdb more refactors
2025-02-26 08:58:19 +05:30

18 lines
300 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;
}
class BodyRatioConstants {
const BodyRatioConstants._();
static const oneThird = 1 / 3;
}