ai_chat_box 0.1.0
ai_chat_box: ^0.1.0 copied to clipboard
A generic, customizable chat widget for Flutter that supports dynamic AI-like conversations with user-defined callback responses.
AI Chat Box #
El archivo README.md es fundamental porque aparece en la página de tu paquete en pub.dev. Un ejemplo:
# AI Chat Box
A customizable chat widget for Flutter applications that supports AI-like conversations via dynamic callbacks. Perfect for integrating with AI APIs, chatbots, or other dynamic chat systems.
## Features
- Customizable UI for user and bot messages.
- Supports streaming responses for real-time updates.
- Easy to integrate with any API or service.
## Getting Started
1. Add the dependency:
```yaml
dependencies:
ai_chat_box: ^1.0.0
- Import the package:
import 'package:ai_chat_box/ai_chat_box.dart';
- Use the widget:
Stream<String> _mockChatCallback(List<Map<String, String>> messages) async* {
await Future.delayed(const Duration(seconds: 1));
final lastUserMessage = messages.last['user'] ?? '';
yield "Response for: $lastUserMessage";
}
GenericChatWidget(
initialMessages: [
{"bot": "Hello! How can I assist you?"},
],
onSend: _mockChatCallback,
title: 'Chat Demo',
);
Example App #
Check the example directory for a complete example.