Private chat info UI + backend implemented.

This commit is contained in:
Asal Lotfi
2025-09-05 15:31:01 +03:30
parent e112ae1308
commit 63b201b697
20 changed files with 716 additions and 12 deletions
@@ -0,0 +1,11 @@
package org.to.telegramfinalproject.UI;
import org.json.JSONObject;
import org.to.telegramfinalproject.Models.ChatEntry;
public class ChannelInfoController {
public void setChannelDataFromJson(ChatEntry entry, JSONObject data) {
// read name, status, bio, image url from JSON
// update labels/images accordingly
}
}