mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-06-20 16:55:17 +00:00
Remove Navigator references from conversations pages
This commit is contained in:
21
lib/ui/screens/create_conversation_screen.dart
Normal file
21
lib/ui/screens/create_conversation_screen.dart
Normal file
@ -0,0 +1,21 @@
|
||||
import 'package:comunic/ui/screens/update_conversation_screen.dart';
|
||||
import 'package:comunic/ui/widgets/comunic_back_button_widget.dart';
|
||||
import 'package:comunic/utils/intl_utils.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
/// Create a new conversation route
|
||||
///
|
||||
/// @author Pierre HUBERT
|
||||
|
||||
class CreateConversationScreen extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
leading: ComunicBackButton(),
|
||||
title: Text(tr("Create a conversation")),
|
||||
),
|
||||
body: UpdateConversationScreen(),
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user