Syncfusion flutter chat
Skill syncfusion/flutter-ui-components-skills/skills/syncfusion-flutter-chat
Implements Syncfusion Flutter Chat (SfChat) and AI AssistView (SfAIAssistView) widgets for conversational interfaces in Flutter apps. Use when building chat UIs, AI chatbot interfaces, or messaging screens with support for message bubbles, composers, and action buttons. This skill covers conversation area customization, placeholder screens, theming, RTL support, and AI assistant integration.From its SKILL.md
npx -y skills add syncfusion/flutter-ui-components-skills --skill syncfusion-flutter-chatAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
16.3 KB, ~3.6k tokens by cl100k_base, as published. Nobody here has run it
Syncfusion Flutter Chat & AI AssistView
This skill covers two related Syncfusion Flutter components for conversational UI: SfChat (Chat widget) and SfAIAssistView (AI AssistView widget). While they share many visual and configuration features, they serve different primary purposes.
When to Use This Skill
Use this skill when you need to:
- Implement chat interfaces with multi-user conversations and messaging
- Add AI assistant functionality with request-response patterns
- Build messaging apps with incoming/outgoing message support
- Create AI chatbot interfaces with AI service integration
- Display conversation UI with messages, avatars, and timestamps
- Handle message composition with text editors and action buttons
- Customize message appearance with builders, themes, and styling
- Support placeholder screens for empty conversation states
- Enable suggestion chips for quick responses or actions
- Integrate toolbar actions for response messages (like, copy, retry)
- Show loading indicators for AI response generation
- Implement RTL support for right-to-left languages
Choosing the Right Component
Use SfChat (Chat Widget) when:
- You need multi-user conversation interfaces
- Your app requires incoming and outgoing messages differentiation
- You need traditional messaging app functionality (WhatsApp, Telegram style)
- Building chat for: team collaboration, customer support, social messaging, group chats
- Message suggestions should appear on both incoming/outgoing messages
- You need to identify the outgoing user explicitly
Use SfAIAssistView (AI AssistView Widget) when:
- You need AI assistant or chatbot functionality
- Your primary goal is request-response patterns with AI services
- You need toolbar items on response messages (like, dislike, copy, retry)
- You need loading indicators while AI generates responses
- Building UI for: AI assistants, chatbots, help bots, Q&A interfaces
- Message suggestions should only appear on AI response messages
- You need clear request vs response message distinction
Key Differences Summary:
| Feature | SfChat | SfAIAssistView |
|---|---|---|
| Primary Purpose | Multi-user messaging | AI assistant interaction |
| Message Types | Incoming/Outgoing | Request/Response |
| User Identification | outgoingUser property | Author in each message |
| Suggestions | On any message | Only on response messages |
| Toolbar Items | ❌ Not supported | ✅ Response toolbar support |
| Loading Indicator | ❌ Not included | ✅ Response loading builder |
| Use Case | Chat apps, messaging | AI chatbots, assistants |
| Message Classes | ChatMessage | AssistMessage |
| Composer Classes | ChatComposer | AssistComposer |
| Action Button Classes | ChatActionButton | AssistActionButton |
Documentation and Navigation Guide
Getting Started
📄 Read: references/getting-started.md
- Installation and package setup for both components
- Basic SfChat implementation
- Basic SfAIAssistView implementation
- Package dependencies and imports
- Quick comparison and first examples
Component Overview
📄 For Chat: references/chat-overview.md
- SfChat widget overview and features
- When to use Chat vs AI AssistView
- Multi-user conversation capabilities
- Incoming/outgoing message patterns
- Chat-specific capabilities
- Basic chat configuration
📄 For AI AssistView: references/aiassistview-overview.md
- SfAIAssistView widget overview and features
- When to use AI AssistView vs Chat
- Request/response patterns
- AI integration capabilities
- AIAssistView-specific capabilities
- Basic AIAssistView configuration
Conversation Area and Messages
📄 Read: references/conversation-area.md
- Message structure and display
- Incoming/outgoing messages (Chat)
- Request/response messages (AIAssistView)
- Message settings and customization
- Headers and timestamps
- Footers and additional info
- Message avatars
- Content area styling
- Message suggestions (both components)
- Toolbar items (AIAssistView only)
- Loading indicators (AIAssistView only)
Composer and Input
📄 Read: references/composer.md
- Default composer configuration
- Text editor customization
- Minimum and maximum lines
- Decoration and styling
- Hint text and placeholders
- Borders and padding
- Prefix and suffix icons
- Text style customization
- Margin configuration
- Custom composer builder
Action Button
📄 Read: references/action-button.md
- Action button overview
- Send button functionality
- Custom child widgets
- onPressed callback
- Tooltip text
- Colors (foreground, background, focus, hover, splash)
- Elevation settings
- Mouse cursor customization
- Shape and border radius
- Margin and size
Placeholder
📄 Read: references/placeholder.md
- Placeholder builder overview
- Custom placeholder widgets
- Empty conversation state design
- Welcome messages
- Getting started hints
- Examples for both components
Theming and Customization
📄 Read: references/theming.md
- Theme overview (Chat vs AIAssistView)
- SfChatTheme and SfAIAssistViewTheme
- Action button theming
- Avatar colors and styling
- Message background colors
- Content text styles
- Header text styles
- Suggestion styling
- Message shapes and borders
- Toolbar theming (AIAssistView only)
Localization and Accessibility
📄 Read: references/right-to-left.md
- Right-to-left (RTL) support
- Directionality widget usage
- RTL rendering for all elements
- RTL for placeholder
- RTL for composer
- RTL for action button
- RTL for messages and content
Common Patterns
📄 Read: references/common-patterns.md
- Message settings customization
- Custom composer with multiple actions
- Custom placeholder for empty state
- Loading indicator for AI responses
- Theming for consistent brand experience
Quick Start Examples
Basic Chat with Messages
import 'package:flutter/material.dart';
import 'package:syncfusion_flutter_chat/chat.dart';
class MyChat extends StatefulWidget {
@override
State<MyChat> createState() => _MyChatState();
}
class _MyChatState extends State<MyChat> {
List<ChatMessage> _messages = <ChatMessage>[];
@override
void initState() {
super.initState();
_messages = <ChatMessage>[
ChatMessage(
text: 'Hi! How can I help you today?',
time: DateTime.now(),
author: const ChatAuthor(
id: '123-001',
name: 'John Doe',
),
),
ChatMessage(
text: 'I need help with my order.',
time: DateTime.now(),
author: const ChatAuthor(
id: '123-002',
name: 'Jane Smith',
),
),
];
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('Chat')),
body: SfChat(
messages: _messages,
outgoingUser: '123-002',
composer: const ChatComposer(
decoration: InputDecoration(
hintText: 'Type a message',
),
),
actionButton: ChatActionButton(
onPressed: (String newMessage) {
setState(() {
_messages.add(
ChatMessage(
text: newMessage,
time: DateTime.now(),
author: const ChatAuthor(
id: '123-002',
name: 'Jane Smith',
),
),
);
});
},
),
),
);
}
}
Basic AI AssistView with AI Integration
import 'package:flutter/material.dart';
import 'package:syncfusion_flutter_chat/assist_view.dart';
class MyAIAssistView extends StatefulWidget {
@override
State<MyAIAssistView> createState() => _MyAIAssistViewState();
}
class _MyAIAssistViewState extends State<MyAIAssistView> {
List<AssistMessage> _messages = <AssistMessage>[];
void _generateAIResponse(String userRequest) async {
// Call your AI service here
final String aiResponse = await _getAIResponse(userRequest);
setState(() {
_messages.add(
AssistMessage.response(
data: aiResponse,
time: DateTime.now(),
author: const AssistMessageAuthor(
id: 'ai-001',
name: 'AI Assistant',
),
),
);
});
}
Future<String> _getAIResponse(String request) async {
// Connect with your preferred AI service
// Example: OpenAI, Google AI, Azure AI, etc.
await Future.delayed(Duration(seconds: 2)); // Simulate API call
return 'This is a response to: $request';
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('AI Assistant')),
body: SfAIAssistView(
messages: _messages,
composer: const AssistComposer(
decoration: InputDecoration(
hintText: 'Ask me anything',
),
),
actionButton: AssistActionButton(
onPressed: (String userRequest) {
setState(() {
_messages.add(
AssistMessage.request(
data: userRequest,
time: DateTime.now(),
author: const AssistMessageAuthor(
id: 'user-001',
name: 'User',
),
),
);
_generateAIResponse(userRequest);
});
},
),
placeholderBuilder: (BuildContext context) {
return const Center(
child: Text(
'What can I help you with today?',
style: TextStyle(fontSize: 16),
),
);
},
),
);
}
}
Chat with Suggestions
SfChat(
messages: <ChatMessage>[
ChatMessage(
text: 'Which programming language should I learn?',
time: DateTime.now(),
author: const ChatAuthor(id: '1', name: 'Alice'),
),
ChatMessage(
text: 'It depends on your goals. What interests you?',
time: DateTime.now(),
author: const ChatAuthor(id: '2', name: 'Bob'),
suggestions: <ChatMessageSuggestion>[
const ChatMessageSuggestion(data: 'Web Development'),
const ChatMessageSuggestion(data: 'Mobile Apps'),
const ChatMessageSuggestion(data: 'Data Science'),
const ChatMessageSuggestion(data: 'Game Development'),
],
),
],
outgoingUser: '1',
)
AI AssistView with Toolbar Items
void _generateResponse(String request) async {
final String response = await _getAIResponse(request);
setState(() {
_messages.add(
AssistMessage.response(
data: response,
time: DateTime.now(),
author: const AssistMessageAuthor(id: 'ai', name: 'AI'),
toolbarItems: <AssistMessageToolbarItem>[
const AssistMessageToolbarItem(
content: Icon(Icons.thumb_up_outlined),
tooltip: 'Like',
),
const AssistMessageToolbarItem(
content: Icon(Icons.thumb_down_outlined),
tooltip: 'Dislike',
),
const AssistMessageToolbarItem(
content: Icon(Icons.copy),
tooltip: 'Copy',
),
const AssistMessageToolbarItem(
content: Icon(Icons.restart_alt),
tooltip: 'Regenerate',
),
],
),
);
});
}
SfAIAssistView(
messages: _messages,
onToolbarItemSelected: (bool selected, int messageIndex,
AssistMessageToolbarItem item, int toolbarItemIndex) {
// Handle toolbar action (like, dislike, copy, etc.)
print('Toolbar item selected at index $toolbarItemIndex');
},
)
Key Properties
SfChat Essential Properties
messages- List of ChatMessage objects to displayoutgoingUser- ID of the user sending messages (distinguishes incoming/outgoing)composer- ChatComposer for text inputactionButton- ChatActionButton for sending messagesplaceholderBuilder- Custom widget for empty stateincomingMessageSettings- Settings for incoming messagesoutgoingMessageSettings- Settings for outgoing messagesmessageHeaderBuilder- Custom header for each messagemessageFooterBuilder- Custom footer for each messagemessageContentBuilder- Custom content for each messagemessageAvatarBuilder- Custom avatar for each message
SfAIAssistView Essential Properties
messages- List of AssistMessage objects (request/response)composer- AssistComposer for text inputactionButton- AssistActionButton for sending requestsplaceholderBuilder- Custom widget for empty staterequestMessageSettings- Settings for request messagesresponseMessageSettings- Settings for response messagesmessageHeaderBuilder- Custom header for each messagemessageFooterBuilder- Custom footer for each messagemessageContentBuilder- Custom content for each messagemessageAvatarBuilder- Custom avatar for each messageresponseLoadingBuilder- Custom loading indicator while AI respondsonToolbarItemSelected- Callback when toolbar item is tappedonSuggestionItemSelected- Callback when suggestion chip is tapped
ChatMessage / AssistMessage Properties
ChatMessage:
text- Message contenttime- Timestamp of the messageauthor- ChatAuthor with id, name, and avatarsuggestions- List of ChatMessageSuggestion items
AssistMessage:
data- Message contenttime- Timestamp of the messageauthor- AssistMessageAuthor with id, name, and avatarsuggestions- List of AssistMessageSuggestion items (response only)toolbarItems- List of AssistMessageToolbarItem (response only)
Composer Properties (Both Components)
minLines- Minimum lines in text editor (default: 1)maxLines- Maximum lines in text editor (default: 6)decoration- InputDecoration for stylingmargin- Space around the composertextStyle- Text style for inputbuilder- Custom composer widget
Action Button Properties (Both Components)
child- Custom widget for buttononPressed- Callback when button is pressedtooltip- Tooltip textforegroundColor- Icon/text colorbackgroundColor- Button background colorfocusColor- Color when focusedhoverColor- Color when hoveredsplashColor- Ripple effect colorelevation- Shadow elevationfocusElevation- Elevation when focusedhoverElevation- Elevation when hoveredhighlightElevation- Elevation when pressedmouseCursor- Cursor style on hovershape- Button shape and bordermargin- Space around buttonsize- Button dimensions
Message Settings Properties (Both Components)
showAuthorName- Show/hide author nameshowTimestamp- Show/hide timestampshowAuthorAvatar- Show/hide avatartimestampFormat- DateFormat for timestampbackgroundColor- Message background colortextStyle- Message text styleheaderTextStyle- Header text styleshape- Message bubble shapewidthFactor- Message width relative to screen (0-1)avatarSize- Avatar dimensionsmargin- Space around messagepadding- Padding inside messageavatarPadding- Padding around avatarheaderPadding- Padding around headerfooterPadding- Padding around footer
Common Use Cases
For SfChat: Customer support chat, team messaging, social messaging, live chat support with multi-user conversations and incoming/outgoing message patterns.
For SfAIAssistView: AI chatbots, AI assistants, help bots, Q&A interfaces with request/response patterns, toolbar items, and loading indicators.
What ships with it: 10 files
120.1 KB alongside SKILL.md
references/
- action-button.md10.7 KB
- aiassistview-overview.md10.0 KB
- chat-overview.md7.3 KB
- common-patterns.md18.7 KB
- composer.md12.4 KB
- conversation-area.md13.9 KB
- getting-started.md9.0 KB
- placeholder.md10.3 KB
- right-to-left.md12.2 KB
- theming.md15.5 KB