cxgenie 2.4.23 copy "cxgenie: ^2.4.23" to clipboard
cxgenie: ^2.4.23 copied to clipboard

The cxgenie Flutter Package seamlessly integrates https://cxgenie.ai cutting-edge Conversational AI and NLP capabilities into Flutter apps.

CXGenie #

The cxgenie Flutter Package seamlessly integrates https://cxgenie.ai cutting-edge Conversational AI and NLP capabilities into Flutter apps. Effortlessly deploy chatbots, leverage multilingual support, customize the UI, and access rich media features for immersive user interactions. With flexible deployment options and comprehensive documentation, developers can create intelligent, user-centric Flutter applications, enhancing user engagement and satisfaction.

Installation #

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  cxgenie: ^2.4.23
  1. Import the package and use it in your Flutter App.
import 'package:cxgenie/cxgenie.dart';

Example #

Chat #

There are a number of properties that you can modify:

  • botId
  • userToken (optional)
import 'package:cxgenie/cxgenie.dart';

class Example extends StatelessWidget {
  const Example({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: const CXGenie(
          botId: 'string',
          userToken: 'string',
        ),
      ),
    );
  }
}
7
likes
50
points
278
downloads

Publisher

verified publishercxgenie.ai

Weekly Downloads

The cxgenie Flutter Package seamlessly integrates https://cxgenie.ai cutting-edge Conversational AI and NLP capabilities into Flutter apps.

Homepage

License

MIT (license)

Dependencies

chewie, flutter, flutter_form_builder, flutter_portal, flutter_svg, flutter_widget_from_html_core, form_builder_validators, http, image_picker, intl, json_annotation, linkify, logger, provider, socket_io_client, url_launcher, uuid, video_player

More

Packages that depend on cxgenie