dynamic chat bubbles implemented along with conversation support. currently only hard-coded dummy data.

This commit is contained in:
Joshua
2024-07-08 19:48:14 -06:00
parent 7547fe110f
commit 78e7f4b896
11 changed files with 308 additions and 259 deletions
+1 -2
View File
@@ -15,8 +15,7 @@ class ConversationModel extends FlutterFlowModel<ConversationWidget> {
@override
void initState(BuildContext context) {
conversationThreadModel =
createModel(context, () => ConversationThreadModel(0)); // TODO
conversationThreadModel = createModel(context, () => ConversationThreadModel()); // TODO
modelItemModel = createModel(context, () => ModelItemModel());
}