ai_chat_plus 1.0.9
ai_chat_plus: ^1.0.9 copied to clipboard
A Flutter package that provides AI chat functionality with enhanced features including OpenAI, Google Gemini, and Claude AI integrations, voice recognition, and multimodal support.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'test_chat_page.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'AI Chat Plus Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
useMaterial3: true,
scaffoldBackgroundColor: Colors.grey[100],
appBarTheme: AppBarTheme(
backgroundColor: Colors.white,
elevation: 0,
centerTitle: true,
iconTheme: IconThemeData(color: Colors.grey[800]),
titleTextStyle: TextStyle(
color: Colors.grey[800],
fontSize: 20,
fontWeight: FontWeight.w600,
),
),
),
home: const TestChatPage(),
);
}
}