first commit

This commit is contained in:
2025-03-03 20:59:42 +03:00
commit 273e68557a
1099 changed files with 17880 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
// Flutter imports:
import 'package:flutter/widgets.dart';
/// Подключение сторонней библиотеки
/// Сделано для упрощения чтения импортов
export 'package:flutter_screenutil/flutter_screenutil.dart';
///
/// Маштабирование в зависимости от контекста
///
extension ScaleFromContext on BuildContext {
///
/// Screen Width
///
double get sw => MediaQuery.of(this).size.width;
///
/// Screen Height
///
double get sh => MediaQuery.of(this).size.height;
}