zycloud_chat 1.2.0
zycloud_chat: ^1.2.0 copied to clipboard
This library is a chat App plug-in based on zycloud_client and zycloud_widget that supports code push in AOT environment.
example/lib/main.dart
import 'package:shelf_easy/shelf_easy.dart';
import 'package:zycloud_chat/zycloud_main.dart';
void main() {
zycloudMain(
debug: true,
appname: 'zycloud_chat_sdk',
dbname: 'zycloud_develop',
dbpwd: '68b976ff-f7f6-4e4c-b3a8-5e2a97aecd01',
bsid: '61da2b54285650ba5034ada4',
secret: '3beea6bf-7e88-694e-7754-aa4d38bf7595',
config: EasyClientConfig(host: '192.168.2.6', port: 6789, binary: true, sslEnable: false),
service: true,
fetchCodeLocalServer: true,
fetchCodeLocalBaseUrl: 'http://192.168.2.6:8888',
);
}