Skip to content

Instantly share code, notes, and snippets.

@mortezanazari-hub
Created January 23, 2025 12:29
Show Gist options
  • Select an option

  • Save mortezanazari-hub/ebdb1180a12a47989ad350b727bc6e5a to your computer and use it in GitHub Desktop.

Select an option

Save mortezanazari-hub/ebdb1180a12a47989ad350b727bc6e5a to your computer and use it in GitHub Desktop.
/// {@template app_spacing}
/// کلاس شامل تمام فاصله‌ها (مهم نیست عمودی باشد یا افقی) استفاده شده در برنامه است.
/// Class contains all space (does not matter is it vertical
/// or horizontal used in app
/// {@endtemplate}
class AppSpacing {
AppSpacing._();
/// بدون فاصله.
/// No spacing.
static const none = 0.0;
/// فاصله خیلی خیلی کوچک ۲.۰.
/// Extra extra small spacing of 2.0.
static const xxs = 2.0;
/// فاصله خیلی کوچک ۴.۰.
/// Extra small spacing of 4.0.
static const xs = 4.0;
/// فاصله کوچک ۶.۰.
/// Small spacing of 6.0.
static const sm = 6.0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment