Skip to content

Commit c71883d

Browse files
authored
fix input field overlap issue (#115)
1 parent 79035df commit c71883d

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.9.1
2+
* fix [#96](https://github.com/flutter/ai/issues/96): input field overlap issue
3+
14
## 0.9.0
25
* added support for tool calls to the Gemini and Vertex providers. Check out the
36
new `function_calls` example to see it in action. Thanks to @toshiossada for

lib/src/views/chat_text_field.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ class ChatTextField extends StatelessWidget {
101101
hintText: hintText,
102102
hintStyle: hintStyle,
103103
contentPadding: hintPadding,
104+
isDense: false,
104105
),
105106
);
106107
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flutter_ai_toolkit
22
description: >-
33
A set of AI chat-related widgets for Flutter apps targeting
44
mobile, desktop, and web.
5-
version: 0.9.0
5+
version: 0.9.1
66
repository: https://github.com/flutter/ai
77

88
topics:

0 commit comments

Comments
 (0)