android: implement message screen ui with compose actions
Some checks failed
CI / test (push) Failing after 2m8s

This commit is contained in:
Codex
2026-03-09 02:10:52 +03:00
parent c63f063726
commit 545b45c5db
6 changed files with 441 additions and 33 deletions

View File

@@ -84,3 +84,10 @@
- Updated unified realtime handler to write `receive_message`, `message_updated`, `message_deleted` into `messages` Room state.
- Added delivery/read status updates in Room for message status events.
- Kept chat list sync updates in the same manager/use-case pipeline for consistency.
### Step 14 - Sprint A / 4) Message UI core
- Replaced chat placeholder with a real message screen route + ViewModel.
- Added message list rendering with Telegram-like bubble alignment and status hints.
- Added input composer with send flow, reply/edit modes, and inline action cancellation.
- Added long-press actions (`reply`, `edit`, `delete`) for baseline message operations.
- Added manual "load older" pagination trigger and chat back navigation integration.