1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 12:59:21 +00:00
comunicmobile/lib/ui/routes/update_conversation_route.dart

23 lines
630 B
Dart
Raw Normal View History

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;
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
}