push fetch devices and connecting the filters

This commit is contained in:
ashrafzarkanisala
2024-08-24 16:37:10 +03:00
parent 0c047de9c1
commit 2597cdc311
68 changed files with 1800 additions and 989 deletions

View File

@ -22,11 +22,12 @@ class HomeCard extends StatelessWidget {
return InkWell(
onTap: active ? onTap : null,
child: Container(
padding: const EdgeInsets.only(left: 10,right: 10,bottom: 10),
padding: const EdgeInsets.only(left: 10, right: 10, bottom: 10),
decoration: BoxDecoration(
color: evenNumbers && active?
ColorsManager.blueColor.withOpacity(0.8) :
(active ?ColorsManager.blueColor
color: evenNumbers && active
? ColorsManager.blueColor.withOpacity(0.8)
: (active
? ColorsManager.blueColor
: ColorsManager.blueColor.withOpacity(0.2)),
borderRadius: BorderRadius.circular(30),
),