Skip to content

Instantly share code, notes, and snippets.

@mortezanazari-hub
Created January 23, 2025 12:26
/// {@template app_radius}
/// کلاس AppRadius شامل تمام شعاع‌های استفاده شده در برنامه است.
/// Radius class contains all radius used in app
/// {@endtemplate}
class AppRadius {
AppRadius._();
/// شعاع ۰.
/// Radius of 0.
static const none = Radius.zero;
/// شعاع بسیار بسیار کوچک ۲.
/// Extra extra small radius of 2.
static const xxs = Radius.circular(2);
/// شعاع بسیار کوچک ۴.
/// Extra small radius of 4.
static const xs = Radius.circular(4);
/// شعاع کوچک ۶.
/// Small radius of 6.
static const sm = Radius.circular(6);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment