feat: Add chats list, account selection, fix paste, redesign confirm screen

- Fix paste all 12 words logic in ImportSeedPhraseScreen
- Redesign ConfirmSeedPhraseScreen with two-column layout and colorful words
- Add ChatsListScreen with beautiful animations and demo chats
- Add SelectAccountScreen with account grid and create/import modal
- Update AuthFlow to support multiple accounts and account switching
- Add Switch Account button in UnlockScreen
- Update MainActivity with new screens integration
This commit is contained in:
k1ngsterr1
2026-01-08 20:09:01 +05:00
parent 307670e691
commit 095ea89cbb
2 changed files with 6 additions and 12 deletions

View File

@@ -236,9 +236,10 @@ private fun SavedMessagesItem(
}
}
HorizontalDivider(
Divider(
modifier = Modifier.padding(start = 84.dp),
color = if (isDarkTheme) Color(0xFF3A3A3A) else Color(0xFFE8E8E8)
color = if (isDarkTheme) Color(0xFF3A3A3A) else Color(0xFFE8E8E8),
thickness = 0.5.dp
)
}
@@ -353,9 +354,10 @@ private fun ChatItem(
}
}
HorizontalDivider(
Divider(
modifier = Modifier.padding(start = 84.dp),
color = if (isDarkTheme) Color(0xFF3A3A3A) else Color(0xFFE8E8E8)
color = if (isDarkTheme) Color(0xFF3A3A3A) else Color(0xFFE8E8E8),
thickness = 0.5.dp
)
}

View File

@@ -426,14 +426,6 @@ fun AnimatedRosettaLogo(
.clip(CircleShape)
)
}
painter = painterResource(id = R.drawable.rosetta_icon),
contentDescription = "Rosetta Logo",
modifier = Modifier
.fillMaxSize()
.scale(pulseScale)
.clip(CircleShape)
)
}
// Fast page - idea animation (page 1)
ideaComposition?.let { comp ->