cxgenie

Creator: coderz1093

Last updated:

Add to Cart

Description:

cxgenie

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 #

Add the latest version of package to your pubspec.yaml (and rundart pub get):

dependencies:
cxgenie: ^2.4.16
copied to clipboard

Import the package and use it in your Flutter App.

import 'package:cxgenie/cxgenie.dart';
copied to clipboard
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',
),
),
);
}
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.