← Back to companies
[ OK ] Loaded —
[ INFO ]
$ cd
$ ls -lt
01
02
03
04
05
$ ls -lt
01
02
03
04
05
user@intervues:~/$
Implement a simple Android Compose UI for a social-media "post" screen. The screen must contain a multiline TextField where the user types a message, a live character counter, and a POST button. The counter changes color as the user types: green while the count is 0–200, yellow at 201–260, and red at 261–280. The POST button is enabled only when the text is non-empty and the length is ≤ 280 characters; otherwise it is disabled. Display the remaining characters (280 − current length) next to the counter. Make sure the TextField survives configuration changes (rotation) and that the keyboard behaves naturally (e.g., IME action done).