mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
12 lines
316 B
Dart
12 lines
316 B
Dart
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 {
|
|
@override
|
|
Widget build(BuildContext context) => UpdateConversationScreen();
|
|
}
|