1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 16:25:17 +00:00

Ready to implement call system

This commit is contained in:
2020-05-09 19:45:07 +02:00
parent 44f417a0f2
commit 642820127c
3 changed files with 44 additions and 5 deletions

View File

@ -0,0 +1,26 @@
import 'package:comunic/utils/intl_utils.dart';
import 'package:comunic/utils/ui_utils.dart';
import 'package:flutter/material.dart';
/// Tablets mode calls area
///
/// @author Pierre Hubert
class CallsArea extends StatefulWidget {
const CallsArea({Key key}) : super(key: key);
@override
CallsAreaState createState() => CallsAreaState();
}
class CallsAreaState extends State<CallsArea> {
@override
Widget build(BuildContext context) {
return Stack();
}
/// Open a new call
void openCall(int convID) {
showSimpleSnack(context, tr("Open call $convID"));
}
}