2019-05-01 07:24:50 +00:00
|
|
|
import 'package:comunic/ui/screens/update_conversation_screen.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
/// Update a conversation route
|
|
|
|
///
|
|
|
|
/// @author Pierre HUBERT
|
|
|
|
|
|
|
|
class UpdateConversationRoute extends StatefulWidget {
|
|
|
|
final int conversationID;
|
|
|
|
|
2022-03-10 18:39:57 +00:00
|
|
|
const UpdateConversationRoute({Key? key, required this.conversationID})
|
2022-03-11 16:02:06 +00:00
|
|
|
: super(key: key);
|
2019-05-01 07:24:50 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
State<StatefulWidget> createState() => _UpdateConversationRoute();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _UpdateConversationRoute extends State<UpdateConversationRoute> {
|
|
|
|
@override
|
2021-03-13 09:32:11 +00:00
|
|
|
Widget build(BuildContext context) =>
|
|
|
|
UpdateConversationScreen(convID: widget.conversationID);
|
2019-05-01 07:24:50 +00:00
|
|
|
}
|