Обновлен проект. Добавлена БД
This commit is contained in:
@@ -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,
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user