Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2025-05-26 | 1.3 kB | |
v2.3.1 source code.tar.gz | 2025-05-26 | 1.2 MB | |
v2.3.1 source code.zip | 2025-05-26 | 1.4 MB | |
Totals: 3 Items | 2.6 MB | 0 |
⚠️ Breaking Changes ⚠️
Even though this is a patch release, it depends on flutter_chat_core
, which introduced a small breaking change. I realized I didn’t bump flutter_chat_ui
to a new minor version before publishing - sorry about that!
Fix is simple: if you have a custom ChatController, the set
operation now requires a messages array.
1. If you were using named parameters like set(messages: messages), change it to: set(messages)
2. If you previously used set() with no arguments, replace it with: set([])