feat: implement import mode in authentication flow and update UI accordingly

This commit is contained in:
2026-02-14 04:04:23 +05:00
parent 85e894182a
commit e301478d92
4 changed files with 65 additions and 15 deletions

View File

@@ -1014,7 +1014,7 @@ fun ProfileScreen(
clip = false
)
.clip(CircleShape)
.background(if (isDarkTheme) Color(0xFF2C2C2E) else PrimaryBlue)
.background(if (isDarkTheme) Color(0xFF2A2A2A) else Color(0xFF0D8CF4))
.clickable { showPhotoPicker = true },
contentAlignment = Alignment.Center
) {
@@ -1795,7 +1795,7 @@ fun TelegramToggleItem(
val textColor = if (isDarkTheme) Color.White else Color.Black
val secondaryTextColor = if (isDarkTheme) Color(0xFF8E8E93) else Color(0xFF666666)
val iconColor = if (isDarkTheme) Color(0xFF8E8E93) else Color(0xFF666666)
val accentColor = if (isDarkTheme) PrimaryBlueDark else PrimaryBlue
val accentColor = if (isDarkTheme) Color(0xFF2A2A2A) else Color(0xFF0D8CF4)
val dividerColor = if (isDarkTheme) Color(0xFF3A3A3A) else Color(0xFFE0E0E0)
Column {