feat: update background color for ProfileScreen based on theme

This commit is contained in:
2026-02-14 01:16:00 +05:00
parent 07800d13a7
commit 2db3e52ec2

View File

@@ -1014,7 +1014,7 @@ fun ProfileScreen(
clip = false
)
.clip(CircleShape)
.background(if (isDarkTheme) Color.White else PrimaryBlue)
.background(if (isDarkTheme) Color(0xFF2C2C2E) else PrimaryBlue)
.clickable { showPhotoPicker = true },
contentAlignment = Alignment.Center
) {