Обновлен проект. Добавлена БД

This commit is contained in:
2025-03-03 23:57:55 +03:00
parent 273e68557a
commit cb6ce05059
726 changed files with 9424 additions and 478 deletions

View File

@@ -23,7 +23,7 @@ class DialogItem extends StatelessWidget {
final double dimension;
// Константы для стилей и отступов
static final double _itemHeight = 56.h;
static final double _itemHeight = 52.h;
static const BoxDecoration _itemDecoration = BoxDecoration(
border: Border(bottom: BorderSide(color: AppColors.gray, width: 0.5)),
);
@@ -37,7 +37,7 @@ class DialogItem extends StatelessWidget {
return GestureDetector(
onTap: onTap,
child: Container(
height: _itemHeight.h,
height: _itemHeight,
decoration: _itemDecoration,
child: Padding(
padding: _itemPadding,
@@ -62,7 +62,7 @@ class DialogItem extends StatelessWidget {
Widget _buildTitle() {
return AppTypography(
title,
color: color ?? AppColors.black,
color: color ?? Colors.black,
type: _regular17Style,
);
}