Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
demchenkoalex committed Sep 8, 2021
1 parent b62193f commit 9b10120
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.3.4

- Update dependencies

## 1.3.3

- Add `onTextFieldTap`. Thanks @halildurmus for the PR!
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c

COCOAPODS: 1.10.1
COCOAPODS: 1.11.0
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies:
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.3
file_picker: ^4.0.1
file_picker: ^4.0.2
flutter_chat_ui:
path: ../
image_picker: ^0.8.4
Expand Down
2 changes: 1 addition & 1 deletion lib/src/widgets/file_message.dart
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class FileMessage extends StatelessWidget {
top: 4,
),
child: Text(
formatBytes(message.size),
formatBytes(message.size.truncate()),
style: _user.id == message.author.id
? InheritedChatTheme.of(context)
.theme
Expand Down
2 changes: 1 addition & 1 deletion lib/src/widgets/image_message.dart
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class _ImageMessageState extends State<ImageMessage> {
top: 4,
),
child: Text(
formatBytes(widget.message.size),
formatBytes(widget.message.size.truncate()),
style: _user.id == widget.message.author.id
? InheritedChatTheme.of(context)
.theme
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: flutter_chat_ui
description: >
Actively maintained, community-driven chat UI implementation with an
optional Firebase BaaS.
version: 1.3.3
version: 1.3.4
homepage: https://flyer.chat
repository: https://github.com/flyerhq/flutter_chat_ui

Expand All @@ -15,8 +15,8 @@ dependencies:
sdk: flutter
diffutil_dart: ^2.0.0+1
equatable: ^2.0.3
flutter_chat_types: ^3.0.1
flutter_link_previewer: ^2.4.1
flutter_chat_types: ^3.0.2
flutter_link_previewer: ^2.4.2
intl: ^0.17.0
meta: ^1.3.0
photo_view: ^0.12.0
Expand Down

0 comments on commit 9b10120

Please sign in to comment.