Update shadow properties in CommunityStructureHeader for improved visual aesthetics. Adjusted blur radius and offset to enhance the header's appearance in the space management interface.

This commit is contained in:
Faris Armoush
2025-07-17 13:00:38 +03:00
parent 7b5b40a03c
commit 06f00da02c

View File

@ -20,9 +20,9 @@ class CommunityStructureHeader extends StatelessWidget {
color: ColorsManager.whiteColors, color: ColorsManager.whiteColors,
boxShadow: [ boxShadow: [
BoxShadow( BoxShadow(
color: ColorsManager.shadowBlackColor, color: ColorsManager.shadowBlackColor.withValues(alpha: 0.1),
blurRadius: 8, blurRadius: 20,
offset: const Offset(0, 4), offset: const Offset(0, 1),
), ),
], ],
), ),