We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b4de3e commit a3949abCopy full SHA for a3949ab
lib/widgets/compose_box.dart
@@ -1040,6 +1040,11 @@ class _AttachVideoChatUrlButton extends StatelessWidget {
1040
final ComposeBoxController controller;
1041
final bool enabled;
1042
1043
+ String _generateJitsiUrl(String serverUrl, String visibleText) {
1044
+ final id = List.generate(15, (_) => Random.secure().nextInt(10)).join();
1045
+ return inlineLink(visibleText, '$serverUrl/$id#config.startWithVideoMuted=false');
1046
+ }
1047
+
1048
void _handlePress(BuildContext context) {
1049
}
1050
0 commit comments