cxgenie 2.3.12 copy "cxgenie: ^2.3.12" to clipboard
cxgenie: ^2.3.12 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.3.12
  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',
        ),
      ),
    );
  }
}