fix: Voice message recording dialog

This commit is contained in:
Christian Pauly 2021-01-19 16:30:11 +01:00
parent 38e8e1bce1
commit d273b2ad84

View File

@ -263,7 +263,7 @@ class _ChatState extends State<Chat> {
String result; String result;
await showDialog( await showDialog(
context: context, context: context,
builder: (context) => RecordingDialog( builder: (c) => RecordingDialog(
onFinished: (r) => result = r, onFinished: (r) => result = r,
l10n: L10n.of(context), l10n: L10n.of(context),
)); ));