Added long press options to chatbubbles

This commit is contained in:
2023-02-25 18:28:56 +01:00
parent 2f91b89e0f
commit ff4566cf05
4 changed files with 80 additions and 53 deletions

View File

@ -1,5 +1,4 @@
import 'package:bubble/bubble.dart';
import 'package:flutter/material.dart';
import 'package:marianum_mobile/api/marianumcloud/talk/room/getRoomResponse.dart';
import 'package:marianum_mobile/data/chatList/chatProps.dart';
@ -35,7 +34,7 @@ class _ChatViewState extends State<ChatView> {
Widget build(BuildContext context) {
return Consumer<ChatProps>(
builder: (context, data, child) {
List<Bubble> messages = List<Bubble>.empty(growable: true);
List<Widget> messages = List<Widget>.empty(growable: true);
if(!data.primaryLoading()) {