implemented basic chat bubbles generated from a list.

This commit is contained in:
Joshua
2024-07-07 16:44:08 -06:00
parent 80f20e73a9
commit 8956ed7885
11 changed files with 126 additions and 48 deletions
@@ -0,0 +1,15 @@
import 'package:app/util/server.dart';
import 'chat.dart';
class Conversation {
int conversationID;
List<Chat> chats = [];
Conversation(this.conversationID) {
chats = Server().getConversationByID(conversationID);
}
List<Chat> getChats() {
return chats;
}
}