attendence screen is fixed

This commit is contained in:
Daniah Ayad Al-sultani
2025-12-02 13:11:11 +03:00
parent 2ac504754e
commit 5c48fc280c
4 changed files with 211 additions and 18 deletions

View File

@@ -26,11 +26,11 @@ class Floatingnavbar extends StatelessWidget {
final bottomPadding = MediaQuery.of(context).padding.bottom;
return Container(
height: 85,
height: 70,
margin: EdgeInsets.only(
bottom: 10 + bottomPadding, // Add system padding to our margin
left: 25,
right: 25,
left: 28,
right: 28,
),
decoration: BoxDecoration(
color: (const Color(0xFFE9E9E9)),
@@ -80,8 +80,8 @@ class _NavBarItemTile extends StatelessWidget {
children: [
SvgPicture.asset(
item.iconPath,
width: 37,
height: 37,
width: 30,
height: 30,
colorFilter: ColorFilter.mode(
isSelected ? const Color(0xFF177046) : Colors.black,
BlendMode.srcIn,