Add user profile, cancel button, dark theme and UI improvements

This commit is contained in:
Алексей Будаев 2026-04-04 18:28:24 +08:00
parent cda6eb7ce0
commit a4d24df8d8
21 changed files with 635 additions and 207 deletions

View file

@ -9,6 +9,7 @@ data class UserProfile(
fun toContextString(): String {
return buildString {
append("[User Profile]\n")
if (name.isNotBlank()) append("Name: $name\n")
if (bio.isNotBlank()) append("Bio: $bio\n")
if (preferences.isNotBlank()) append("Preferences: $preferences\n")