crisp 0.1.0 crisp: ^0.1.0 copied to clipboard
Connect with Crisp Chat, register a user to chat (or not) and render a chat widget.
Flutter Crisp #
Connect with Crisp Chat, register a user to chat (or not) and render a chat widget.
Tested on Android and iOS.
Required setup - only iOS #
You need to setup setup the a key in iOS, as described at flutter_webview_plugin.
How to use #
These are the steps to configure and start working with the plugin:
- Initialize with your website id, you can take it here: https://app.crisp.chat/website/%5BWEBISTE_ID%5D/inbox/
- Optionally register an user;
- Set a initial message.
Pretty straightforward:
@override
void initState() {
super.initState();
crisp.initialize('WEBSITE_ID');
crisp.register(
CrispUser(
email: "example@provider.com",
avatar: 'https://avatars2.githubusercontent.com/u/16270189?s=200&v=4',
nickname: "João Cardoso",
phone: "5511987654321",
),
);
crisp.setMessage("Hello world - initial message");
}