Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ example/lib/echo.dart
.flutter-plugins
.flutter-plugins-dependencies
.vscode/settings.json
AGENT.md
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## 0.9.1
* fix [#96](https://github.com/flutter/ai/issues/96): input field overlap issue
* fix [#121](https://github.com/flutter/ai/issues/121): [bug] waiting response
indicator JumpingDotsProgressIndicator overflow

## 0.9.0
* added support for tool calls to the Gemini and Vertex providers. Check out the
Expand Down
2 changes: 1 addition & 1 deletion lib/src/views/chat_message_view/llm_message_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class LlmMessageView extends StatelessWidget {
child:
text == null
? SizedBox(
width: 24,
width: 32,
child: JumpingDotsProgressIndicator(
fontSize: 24,
color: chatStyle.progressIndicatorColor!,
Expand Down