mirror of
https://github.com/Iconica-Development/flutter_chat.git
synced 2025-05-18 18:33:49 +02:00
fix: rebase with master
This commit is contained in:
parent
e9da9f98e3
commit
6d23ea04fa
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
## 1.4.0
|
||||
- Add way to create group chats
|
||||
- Update flutter_profile to 1.3.0
|
||||
- Update flutter_image_picker to 1.0.5
|
||||
|
||||
## 1.3.1
|
||||
|
||||
- Added more options for styling the UI.
|
||||
|
|
|
@ -201,7 +201,7 @@ Widget _newChatScreenRoute(
|
|||
translations: configuration.translations,
|
||||
service: configuration.chatService,
|
||||
onPressCreateGroupChat: () async {
|
||||
if (configuration.onPressCreateGroupChat != null) return;
|
||||
configuration.onPressCreateGroupChat?.call();
|
||||
if (context.mounted) {
|
||||
await Navigator.of(context).push(
|
||||
MaterialPageRoute(
|
||||
|
|
|
@ -11,7 +11,7 @@ environment:
|
|||
dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
flutter_chat_interface:
|
||||
flutter_chat_interface:
|
||||
git:
|
||||
url: https://github.com/Iconica-Development/flutter_chat
|
||||
path: packages/flutter_chat_interface
|
||||
|
|
Loading…
Reference in a new issue