chatbot_launcher 0.0.1 copy "chatbot_launcher: ^0.0.1" to clipboard
chatbot_launcher: ^0.0.1 copied to clipboard

A customizable chatbot launcher widget for Flutter apps with a popup interface and theming support.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:chatbot_launcher/chatbot_launcher.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'chatbot Demo',
      home: Scaffold(
        appBar: AppBar(title: const Text("chatbot Example")),
        body: const Center(child: Text("Home Screen")),
        floatingActionButton: chatbotLauncher(
          config: chatbotConfig(
            fabColor: Colors.purple,
            headerTitle: "Hi! Need Help?",
            headerSubtitle: "Ask us anything — we’re here to help.",
            poweredByBrand: "AwesomeTech.AI",
            poweredByLogo: 'assets/logo.png',
          ),
        ),
      ),
    );
  }
}
0
likes
150
points
36
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A customizable chatbot launcher widget for Flutter apps with a popup interface and theming support.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on chatbot_launcher