1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-01-29 21:23:00 +00:00
comunicmobile/lib/ui/screens/create_conversation_screen.dart

12 lines
316 B
Dart
Raw Normal View History

2019-04-27 16:23:08 +02: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 16:23:08 +02:00
@override
2021-03-13 10:32:11 +01:00
Widget build(BuildContext context) => UpdateConversationScreen();
2019-04-27 16:23:08 +02:00
}