cinitiq_chat_sdk 1.0.1 copy "cinitiq_chat_sdk: ^1.0.1" to clipboard
cinitiq_chat_sdk: ^1.0.1 copied to clipboard

A Flutter SDK for integrating Cinitiq AI chat using WebView with built-in authentication, customizable headers, branded UI, and simple one-line implementation.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Cinitiq Chat SDK Example')),
        body: Center(
          child: ElevatedButton(
            onPressed: () {
              CinitiqChatSdk.openChat(
                context,
                token: "token",
                baseUrl: "https://Cinitiq.com/chat",
                mainTitle: "Cinitiq Assistance",
              );
            },
            child: const Text("Open Chat"),
          ),
        ),
      ),
    );
  }
}
2
likes
155
points
42
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Flutter SDK for integrating Cinitiq AI chat using WebView with built-in authentication, customizable headers, branded UI, and simple one-line implementation.

Homepage
Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, webview_flutter

More

Packages that depend on cinitiq_chat_sdk