1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-02-16 21:52:38 +00:00
comunicmobile/lib/ui/routes/update_conversation_route.dart

23 lines
630 B
Dart
Raw Normal View History

2019-05-01 09:24:50 +02: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 17:02:06 +01:00
: super(key: key);
2019-05-01 09:24:50 +02:00
@override
State<StatefulWidget> createState() => _UpdateConversationRoute();
}
class _UpdateConversationRoute extends State<UpdateConversationRoute> {
@override
2021-03-13 10:32:11 +01:00
Widget build(BuildContext context) =>
UpdateConversationScreen(convID: widget.conversationID);
2019-05-01 09:24:50 +02:00
}