kipps_chatbot 1.0.2 copy "kipps_chatbot: ^1.0.2" to clipboard
kipps_chatbot: ^1.0.2 copied to clipboard

kipps_chatbot is a Flutter package that simplifies the integration of KIPPs AI chatbot into your applications.

example/lib/main.dart

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

void main() {
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key});

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return const Scaffold(
      floatingActionButton:
          ChatbotIntegration(chatbotId: '868aafc1-74b3-4c44-93ec-8fac3b4b7cf3'),
    );
  }
}
4
likes
0
points
54
downloads

Publisher

unverified uploader

Weekly Downloads

kipps_chatbot is a Flutter package that simplifies the integration of KIPPs AI chatbot into your applications.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_inappwebview, http, webview_flutter

More

Packages that depend on kipps_chatbot