fix(chat): Nachrichtentext von bodyMedium (14sp) auf bodyLarge (16sp) vergrößern #112
Labels
No labels
block-planning
bug
documentation
duplicate
enhancement
feature
good first issue
help wanted
infrastructure
invalid
planning
priority:high
priority:low
question
refactoring
status:backlog
status:done
status:in-progress
status:todo
tech-decision
test
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: bollwerkadmin/bollwerk#112
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
Nachrichten-Bubbles im Chat nutzen \MaterialTheme.typography.bodyMedium\ (14 sp). Das ist für einen Chat-Screen zu klein – fühlt sich eng an.
Lösung
In \ChatScreen.kt, Composable \MessageBubble:
\\kotlin
// vorher
style = MaterialTheme.typography.bodyMedium
// nachher
style = MaterialTheme.typography.bodyLarge
\\
Material3-Defaults: \odyMedium\ = 14 sp → \odyLarge\ = 16 sp (+2 sp).
Optionally: Timestamp und Sender-Name von \labelSmall\ (11 sp) → \labelMedium\ (12 sp) – passt proportional besser zu einer größeren Message-Schrift. Nur wenn es gut aussieht.
Datei
\pp/src/main/java/de/bollwerk/app/ui/messaging/ChatScreen.kt, Zeile ~138
Abnahme