imm_flutter 0.1.2 copy "imm_flutter: ^0.1.2" to clipboard
imm_flutter: ^0.1.2 copied to clipboard

imm_flutter is a Flutter package that simplifies the integration of KIPPs AI chatbot into your applications. With just a few lines of code, you can add a chatbot icon to your app, fetch a custom chatb [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:imm_flutter/imm_flutter.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'),
    ); 
  }
  
}
14
likes
0
points
75
downloads

Publisher

unverified uploader

Weekly Downloads

imm_flutter is a Flutter package that simplifies the integration of KIPPs AI chatbot into your applications. With just a few lines of code, you can add a chatbot icon to your app, fetch a custom chatbot icon from an API, and display an interactive chatbot in a bottom sheet. The package handles all the complexities, allowing you to focus on creating engaging user experiences. Ideal for adding instant customer support and user interaction features to your Flutter apps.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, http, webview_flutter

More

Packages that depend on imm_flutter