22 lines
569 B
Dart
22 lines
569 B
Dart
// 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;
|
|
}
|