1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
comunicmobile/lib/ui/screens/create_conversation_screen.dart

12 lines
316 B
Dart
Raw Normal View History

2019-04-27 14:23:08 +00:00
import 'package:comunic/ui/screens/update_conversation_screen.dart';
import 'package:flutter/material.dart';
/// Create a new conversation route
///
/// @author Pierre HUBERT
class CreateConversationScreen extends StatelessWidget {
2019-04-27 14:23:08 +00:00
@override
2021-03-13 09:32:11 +00:00
Widget build(BuildContext context) => UpdateConversationScreen();
2019-04-27 14:23:08 +00:00
}