fix: padding: const EdgeInsets.symmetric

pull/446/head
dettlaff 2024-03-01 17:15:58 +04:00 committed by Inex Code
parent fdc2db7782
commit ecb050e5aa
1 changed files with 2 additions and 2 deletions

View File

@ -138,12 +138,12 @@ class ServerConsumptionListTile extends StatelessWidget {
onTap: onTap,
borderRadius: BorderRadius.circular(8.0),
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 8),
padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 12),
child: ConsumptionListItem(
title: service.displayName,
icon: SvgPicture.string(
service.svgIcon,
width: 24.0,
width: 22.0,
height: 24.0,
colorFilter: ColorFilter.mode(
Theme.of(context).colorScheme.onBackground,