refactor(full refactor): Рефакторинг стартера (#8)

This commit is contained in:
Yuri Petrov
2025-04-27 17:08:34 +03:00
committed by GitHub
parent 18eb7b1fe1
commit 5d7d29ecf8
206 changed files with 1065 additions and 20102 deletions

17
lib/app/app_box.dart Normal file
View File

@@ -0,0 +1,17 @@
import 'package:flutter/widgets.dart';
/// {@template h_box}
/// HBox виджет для вертикального отступа (Надстройка над SizedBox)
/// {@endtemplate}
class HBox extends SizedBox {
/// {@macro h_box}
const HBox(double height, {super.key}) : super(height: height);
}
/// {@template w_box}
/// WBox виджет для вертикального отступа (Надстройка над SizedBox)
/// {@endtemplate}
class WBox extends SizedBox {
/// {@macro w_box}
const WBox(double width, {super.key}) : super(width: width);
}