mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-23 05:19:22 +00:00
21 lines
488 B
Dart
21 lines
488 B
Dart
import 'package:comunic/ui/screens/update_conversation_screen.dart';
|
|
import 'package:comunic/utils/intl_utils.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
/// Create a new conversation route
|
|
///
|
|
/// @author Pierre HUBERT
|
|
|
|
class CreateConversationRoute extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text(tr("Create a conversation")),
|
|
),
|
|
|
|
body: UpdateConversationScreen(),
|
|
);
|
|
}
|
|
}
|