18 lines
300 B
Dart
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;
|
|
}
|