Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2025-06-27 | 1.6 kB | |
v2.6.0 source code.tar.gz | 2025-06-27 | 1.2 MB | |
v2.6.0 source code.zip | 2025-06-27 | 1.4 MB | |
Totals: 3 Items | 2.6 MB | 0 |
⚠️ Breaking Changes ⚠️
onMessageTap
and onMessageLongPress
added BuildContext
as a first parameter, so if you had something like this:
:::dart
void _handleMessageLongPress(
Message message, {
int? index,
LongPressStartDetails? details,
})
replace it with this:
:::dart
void _handleMessageLongPress(
BuildContext context,
Message message, {
int? index,
LongPressStartDetails? details,
})
- FIX: scrollToIndex does not work when starting with an empty list #793. (1948c1f5)
- FEAT: add sendButtonVisibilityMode and allowEmptyMessage to the composer. (7a496607)
- FEAT: add method OnMessageDoubleTapCallback; add param BuildContext context for OnMessageTapCallback and OnMessageLongPressCallback (#817). (6fe68886)
2.5.3
- FIX: update dependencies. (a8ff8b57)
2.5.2
- Update a dependency to the latest release.
2.5.1
- FIX: re-enable composer blur. (791f7308)