push get scenes and automation

This commit is contained in:
ashrafzarkanisala
2024-11-18 01:13:28 +03:00
parent 458ec3976a
commit 54143b3ba9
10 changed files with 452 additions and 48 deletions

View File

@ -60,13 +60,17 @@ class DraggableCard extends StatelessWidget {
const SizedBox(
height: 8,
),
Text(
title,
textAlign: TextAlign.center,
overflow: TextOverflow.ellipsis,
maxLines: 2,
style: context.textTheme.bodySmall?.copyWith(
color: titleColor ?? ColorsManager.blackColor,
Padding(
padding: const EdgeInsets.symmetric(horizontal: 3),
child: Text(
title,
textAlign: TextAlign.center,
overflow: TextOverflow.ellipsis,
maxLines: 2,
style: context.textTheme.bodySmall?.copyWith(
color: titleColor ?? ColorsManager.blackColor,
fontSize: 12,
),
),
),
],