Skip to content
2 changes: 1 addition & 1 deletion Flutter/ai-assistview/action-button.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ It is a callback that is invoked whenever the action button is pressed. Since th

### Tooltip

The [`tooltip`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/AssistActionButton/tooltip.html) text describes the button's action when pressed. It is displayed when the user long-presses on touch devices or hovers the mouse over it on desktop devices. By default, it is set to null, so no tooltip is shown.
The [`tooltip`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/AssistActionButton/tooltip.html) text describes the button's action when pressed. It is displayed when the user long-presses on touch devices or hovers the mouse over it on desktop devices. By default, it is set to `null`, so no tooltip is shown.

{% tabs %}
{% highlight dart %}
Expand Down
12 changes: 6 additions & 6 deletions Flutter/ai-assistview/composer.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ This section explains the customization options available in [`AssistComposer`](

The default [`composer`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/SfAIAssistView/composer.html) is a rounded rectangular text editor that allows users to compose request messages. You can customize its appearance by adding hint text, borders, prefix icons, suffix icons, and more.

When the composer is null, no default text field is added to the AI AssistView widget.
When the `composer` is `null`, no default text field is added to the AI AssistView widget.

### Minimum and maximum lines

* [`minLines`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/AssistComposer/minLines.html) specifies the minimum number of lines in the text span, which affects the height of the text field.
* [`maxLines`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/AssistComposer/maxLines.html) defines the maximum number of lines for the text, determining how many lines are visible when the text wraps.

The default value for minLines is 1, and the default value for maxLines is 6.
The default value for `minLines` is `1`, and the default value for `maxLines` is `6`.

{% tabs %}
{% highlight dart %}
Expand Down Expand Up @@ -51,7 +51,7 @@ The default value for minLines is 1, and the default value for maxLines is 6.

The [`decoration`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/AssistComposer/decoration.html) property customizes the visual attributes of the message input field, such as hint text,borders, and internal padding, using an [`InputDecoration`](https://api.flutter.dev/flutter/material/InputDecoration-class.html).

The [`InputDecoration`] class enhances the composer by utilizing its properties, such as borders, labels, icons, and styles.
The `InputDecoration` class enhances the composer by utilizing its properties, such as borders, labels, icons, and styles.

The following are the major features available in [`InputDecoration`](https://api.flutter.dev/flutter/material/InputDecoration-class.html) for decorating the composer:
* [`enabled`](https://api.flutter.dev/flutter/material/InputDecoration/enabled.html)
Expand Down Expand Up @@ -97,7 +97,7 @@ The [`border`](https://api.flutter.dev/flutter/material/InputDecoration/border.h

#### Content padding

The [`contentPadding`](https://api.flutter.dev/flutter/material/InputDecoration/contentPadding.html) property defines the padding surrounding the text added inside the text field. By default, the padding is set to 16 horizontally and 18 vertically.
The [`contentPadding`](https://api.flutter.dev/flutter/material/InputDecoration/contentPadding.html) property defines the padding surrounding the text added inside the text field. By default, the `padding` is set to `16` horizontally and `18` vertically.

{% tabs %}
{% highlight dart hl_lines="28" %}
Expand Down Expand Up @@ -126,7 +126,7 @@ The [`contentPadding`](https://api.flutter.dev/flutter/material/InputDecoration/

#### Hint text

The [`hintText`](https://api.flutter.dev/flutter/material/InputDecoration/hintText.html) property sets the placeholder text for the text field. By default, it is set to null.
The [`hintText`](https://api.flutter.dev/flutter/material/InputDecoration/hintText.html) property sets the placeholder text for the text field. By default, it is set to `null`.

{% tabs %}
{% highlight dart %}
Expand Down Expand Up @@ -224,7 +224,7 @@ The [`prefixIcon`](https://api.flutter.dev/flutter/material/InputDecoration/pref

The [`margin`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/AssistComposer/margin.html) property defines the space around the text field, which is used to create space between the conversion area and the text field.

By default, the top margin is set to 16.
By default, the top `margin` is set to `16`.

{% tabs %}
{% highlight dart %}
Expand Down
10 changes: 5 additions & 5 deletions Flutter/ai-assistview/conversation-area.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The AI AssistView displays the content of user requests and AI responses. Each m

### Request message

Customize the content of request messages by changing the background color, background shape, and other features based on the message, index, or specific conditions.
Customize the content of [request](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/AssistMessage/AssistMessage.request.html) messages by changing the `background color`, `background shape`, and other features based on the message, index, or specific conditions.

{% tabs %}
{% highlight dart %}
Expand Down Expand Up @@ -67,7 +67,7 @@ Customize the content of request messages by changing the background color, back

### Response message

Customize the content of response messages by changing the background color, background shape, and other features based on the message, index, or specific conditions.
Customize the content of [response](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/AssistMessage/AssistMessage.response.html) messages by changing the `background color`, `background shape`, and other features based on the message, index, or specific conditions.

{% tabs %}
{% highlight dart %}
Expand Down Expand Up @@ -293,7 +293,7 @@ The message author's avatar displays either an image or the initials of their na

### Content area

Customize the area where message content is displayed by changing its background color, shape, and functionalities based on the user or other specific conditions.
Customize the area where message content is displayed by changing its `background color`, `shape`, and functionalities based on the user or other specific conditions.

{% tabs %}
{% highlight dart %}
Expand Down Expand Up @@ -349,7 +349,7 @@ Customize the area where message content is displayed by changing its background

### Suggestions

Provide a list of response suggestions. When the user selects one, it is considered a new request message. Additionally, the layout, background colors, and other elements of the suggestions can be customized.
Provide a list of response [suggestions](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/AssistMessage/suggestions.html). When the user selects one, it is considered a new request message. Additionally, the layout, background colors, and other elements of the suggestions can be customized.

{% tabs %}
{% highlight dart %}
Expand Down Expand Up @@ -466,7 +466,7 @@ Indicates that the AI service's response is in progress after a request has been

### Toolbar items

Append a toolbar to response messages that provides options to perform various actions, such as rating the response, sharing it, copying it, and more.
Append a [toolbar](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/AssistMessage/toolbarItems.html) to response messages that provides options to perform various actions, such as rating the response, sharing it, copying it, and more.

{% tabs %}
{% highlight dart %}
Expand Down
6 changes: 3 additions & 3 deletions Flutter/ai-assistview/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Import the library using the code provided below.

## Initialize AI AssistView widget

Add an AI AssistView widget with the required property, [messages](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/SfAIAssistView/messages.html).
Add an AI AssistView widget with the required [`messages`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/SfAIAssistView/messages.html) property.

{% tabs %}
{% highlight dart %}
Expand All @@ -79,7 +79,7 @@ Add an AI AssistView widget with the required property, [messages](https://pub.d

## Add placeholder to composer

To add a placeholder to the [`AssistComposer`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/AssistComposer-class.html), use the [`decoration`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/AssistComposer/decoration.html) property, which is of type InputDecoration. The placeholder can be added using the [`hintText`](https://api.flutter.dev/flutter/material/InputDecoration/hintText.html) property.
To add a placeholder to the [`AssistComposer`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/AssistComposer-class.html), use the [`decoration`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/AssistComposer/decoration.html) property, which is of type [`InputDecoration`](https://api.flutter.dev/flutter/material/InputDecoration-class.html). The placeholder can be added using the [`hintText`](https://api.flutter.dev/flutter/material/InputDecoration/hintText.html) property.

{% tabs %}
{% highlight dart %}
Expand Down Expand Up @@ -107,7 +107,7 @@ To add a placeholder to the [`AssistComposer`](https://pub.dev/documentation/syn

## Add placeholder to conversation area

By default, conversation messages are empty. It’s a good idea to show a message or design to indicate this. You can use the [`placeholderBuilder`] (https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/SfAIAssistView/placeholderBuilder.html) property to create a custom widget that appears in the conversation area, which can be removed once messages start coming in.
By default, conversation messages are empty. It’s a good idea to show a message or design to indicate this. You can use the [`placeholderBuilder`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/assist_view/SfAIAssistView/placeholderBuilder.html) property to create a custom widget that appears in the conversation area, which can be removed once messages start coming in.

{% tabs %}
{% highlight dart %}
Expand Down
10 changes: 5 additions & 5 deletions Flutter/chat/composer.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This section explains the customization options available in [`ChatComposer`](ht

## Composer

The [`composer`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/chat/SfChat/composer.html) is a customizable text editor designed for typing new messages. It offers options to adjust the appearance and behavior of the text editor, including settings for the minimum and maximum number of lines, decoration, margin, and text style.
The [`composer`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/chat/SfChat/composer.html) is a customizable text editor designed for typing new messages. It offers options to adjust the appearance and behavior of the text editor, including settings for the `minimum` and `maximum` number of lines, `decoration`, `margin`, and `text style`.

When the composer is null, no default text field is added to the chat widget.

Expand All @@ -22,7 +22,7 @@ When the composer is null, no default text field is added to the chat widget.
* [`minLines`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/chat/ChatComposer/minLines.html) specifies the minimum number of lines in the text span, which affects the height of the text field.
* [`maxLines`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/chat/ChatComposer/maxLines.html) defines the maximum number of lines for the text, determining how many lines are visible when the text wraps.

The default value for minLines is 1, and the default value for maxLines is 6.
The default value for `minLines` is `1`, and the default value for `maxLines` is `6`.

{% tabs %}
{% highlight dart %}
Expand Down Expand Up @@ -123,7 +123,7 @@ The [`border`](https://api.flutter.dev/flutter/material/InputDecoration/border.h

#### Content padding

The [`contentPadding`](https://api.flutter.dev/flutter/material/InputDecoration/contentPadding.html) property defines the padding surrounding the text added inside the text field. By default, the padding is set to 16 horizontally and 18 vertically.
The [`contentPadding`](https://api.flutter.dev/flutter/material/InputDecoration/contentPadding.html) property defines the padding surrounding the text added inside the text field. By default, the `padding` is set to `16` horizontally and `18` vertically.

{% tabs %}
{% highlight dart hl_lines="28" %}
Expand Down Expand Up @@ -168,7 +168,7 @@ The [`contentPadding`](https://api.flutter.dev/flutter/material/InputDecoration/

#### Hint text

The [`hintText`](https://api.flutter.dev/flutter/material/InputDecoration/hintText.html) property sets the placeholder text for the text field. By default, it is set to null.
The [`hintText`](https://api.flutter.dev/flutter/material/InputDecoration/hintText.html) property sets the placeholder text for the text field. By default, it is set to `null`.

{% tabs %}
{% highlight dart %}
Expand Down Expand Up @@ -294,7 +294,7 @@ The [`prefixIcon`](https://api.flutter.dev/flutter/material/InputDecoration/pref

The [`margin`](https://pub.dev/documentation/syncfusion_flutter_chat/latest/chat/ChatComposer/margin.html) property defines the space around the text field, which is used to create space between the conversion area and the text field.

By default, the top margin is set to 16.
By default, the top `margin` is set to `16`.

{% tabs %}
{% highlight dart %}
Expand Down
2 changes: 1 addition & 1 deletion Flutter/introduction/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ tr, td, th
<tr>
<td> <a href="https://install.appcenter.ms/orgs/syncfusion-demos/apps/syncfusion-flutter-gallery/distribution_groups/release"><img alt="Flutter macOS App Center" src="https://cdn.syncfusion.com/content/images/FTControl/macos-app-center.png"/></a></td>
<td> <a href="https://snapcraft.io/syncfusion-flutter-gallery"><img alt="Flutter Snap Store" src="https://cdn.syncfusion.com/content/images/FTControl/snap-store.png"/></a></td>
<td colspan="3"> <a href="https://github.com/syncfusion/flutter-examples"><img alt="Flutter GitHub Samples" src="https://cdn.syncfusion.com/content/images/FTControl/github-samples.png"/></a></td>
<td> <a href="https://github.com/syncfusion/flutter-examples"><img alt="Flutter GitHub Samples" src="https://cdn.syncfusion.com/content/images/FTControl/github-samples.png"/></a></td>

</tr>
</table>
Expand Down
4 changes: 1 addition & 3 deletions Flutter/introduction/widget-examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,14 @@ The section contains the GitHub link for each widget’s code examples. This is
<tr>
<td>AI AssistView</td>
<td><a href ="https://help.syncfusion.com/flutter/ai-assistview/overview">AIAssistView</a></td>
<td><a href="https://github.com/syncfusion/flutter-examples/tree/master/lib/samples/ai_assist_view">samples/ai_assist_view</a></td>
<td><a href="https://github.com/syncfusion/flutter-examples/tree/master/lib/samples/ai_assist_view">samples/AI_assist_view</a></td>
</tr>
<tr>

<tr>
<td>Chat</td>
<td><a href ="https://help.syncfusion.com/flutter/chat/overview">Chat</a></td>
<td><a href="https://github.com/syncfusion/flutter-examples/tree/master/lib/samples/chat">samples/chat</a></td>
</tr>
<tr>

<tr>
<td>Grid</td>
Expand Down
2 changes: 0 additions & 2 deletions Flutter/introduction/widgets-catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,12 @@ This section provides the user guide link for each widget and its package link.
<td><a href ="https://help.syncfusion.com/flutter/ai-assistview/overview">AIAssistView</a></td>
<td><a href="https://pub.dev/packages/syncfusion_flutter_chat">syncfusion_flutter_chat</a></td>
</tr>
<tr>

<tr>
<td>Chat</td>
<td><a href = "https://help.syncfusion.com/flutter/chat/overview">Chat</a></td>
<td><a href="https://pub.dev/packages/syncfusion_flutter_chat">syncfusion_flutter_chat</a></td>
</tr>
<tr>

<tr>
<td>Grid</td>
Expand Down
9 changes: 8 additions & 1 deletion Flutter/system-requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,17 @@ See the links below for the recommended Flutter development environments
<th style="text-align:center">Syncfusion<sup>&reg;</sup> Compatible Package Version</th>
</tr>
<tr>
<td style="text-align:center">
<a href="https://storage.googleapis.com/flutter_infra_release/releases/stable/windows/flutter_windows_3.29.0-stable.zip">3.29.0</a>
</td>
<td style="text-align:center">>=<a href="https://pub.dev/packages/syncfusion_flutter_charts/versions/29.1.33">29.1.33</a> <29.1.xx(<a href="https://pub.dev/packages?q=publisher%3Asyncfusion.com&page=2">latest</a>)
</td>
</tr>
<tr>
<td style="text-align:center">
<a href="https://storage.googleapis.com/flutter_infra_release/releases/stable/windows/flutter_windows_3.27.0-stable.zip">3.27.0</a>
</td>
<td style="text-align:center">>=<a href="https://pub.dev/packages/syncfusion_flutter_charts/versions/28.1.36">28.1.36</a> <28.1.xx(<a href="https://pub.dev/packages?q=publisher%3Asyncfusion.com&page=2">latest</a>)
<td style="text-align:center">>=<a href="https://pub.dev/packages/syncfusion_flutter_charts/versions/28.1.36">28.1.36</a> <<a href="https://pub.dev/packages/syncfusion_flutter_charts/versions/28.2.12">28.2.12</a>
</td>
</tr>
<tr>
Expand Down
7 changes: 3 additions & 4 deletions Flutter/themes.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ In the above code snippet, [`chartThemeData`](https://pub.dev/documentation/sync
<a href="https://pub.dev/documentation/syncfusion_flutter_calendar/latest/calendar/SfCalendar-class.html">SfCalendar</a>
</td>
</tr>
</tr>
<tr>
<tr>
<td>
<a href="https://pub.dev/documentation/syncfusion_flutter_core/latest/theme/SfChatThemeData-class.html">SfChatThemeData</a>
</td>
Expand All @@ -128,6 +127,7 @@ In the above code snippet, [`chartThemeData`](https://pub.dev/documentation/sync
<a href="https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/SfPyramidChart-class.html">SfPyramidChart</a><br>
<a href="https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/SfFunnelChart-class.html">SfFunnelChart</a>
</td>
</tr>
<tr>
<td>
<a href="">SfSparkChartThemeData</a>
Expand Down Expand Up @@ -298,8 +298,7 @@ Similarly, refer the following table to know about the other specialized theme w
<a href="https://pub.dev/documentation/syncfusion_flutter_calendar/latest/calendar/SfCalendar-class.html">SfCalendar</a>
</td>
</tr>
</tr>
<tr>
<tr>
<td>
<a href="https://pub.dev/documentation/syncfusion_flutter_core/latest/theme/SfChatThemeData-class.html">SfChatThemeData</a>
</td>
Expand Down