1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/ui/widgets/tablet_mode/conversations/conversation_window.dart

26 lines
553 B
Dart
Raw Normal View History

2020-05-09 06:17:52 +00:00
import 'package:flutter/material.dart';
/// Single conversation window
///
/// @author Pierre Hubert
class ConversationWindow extends StatefulWidget {
final int convID;
const ConversationWindow({
Key key,
@required this.convID,
}) : assert(convID != null),
super(key: key);
@override
_ConversationWindowState createState() => _ConversationWindowState();
}
class _ConversationWindowState extends State<ConversationWindow> {
@override
Widget build(BuildContext context) {
return Card();//TODO : continue here
}
}