mirror of
https://github.com/Iconica-Development/flutter_chat.git
synced 2025-05-19 02:43:50 +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
|
## 1.3.1
|
||||||
|
|
||||||
- Added more options for styling the UI.
|
- Added more options for styling the UI.
|
||||||
|
|
|
@ -201,7 +201,7 @@ Widget _newChatScreenRoute(
|
||||||
translations: configuration.translations,
|
translations: configuration.translations,
|
||||||
service: configuration.chatService,
|
service: configuration.chatService,
|
||||||
onPressCreateGroupChat: () async {
|
onPressCreateGroupChat: () async {
|
||||||
if (configuration.onPressCreateGroupChat != null) return;
|
configuration.onPressCreateGroupChat?.call();
|
||||||
if (context.mounted) {
|
if (context.mounted) {
|
||||||
await Navigator.of(context).push(
|
await Navigator.of(context).push(
|
||||||
MaterialPageRoute(
|
MaterialPageRoute(
|
||||||
|
|
|
@ -11,7 +11,7 @@ environment:
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
flutter_chat_interface:
|
flutter_chat_interface:
|
||||||
git:
|
git:
|
||||||
url: https://github.com/Iconica-Development/flutter_chat
|
url: https://github.com/Iconica-Development/flutter_chat
|
||||||
path: packages/flutter_chat_interface
|
path: packages/flutter_chat_interface
|
||||||
|
|
Loading…
Reference in a new issue