Agora Fastboard SDK

Agora Fastboard SDK 是下一代白板 SDK,可帮助开发人员快速构建白板应用程序。

入门

dependencies:
    fastboard_flutter: ^0.0.1

用法

  Widget build(BuildContext context) {
    return Stack(children: [
        FastRoomWidget(
            fastRoomOptions: FastRoomOptions(
                appId: APP_ID,
                uuid: ROOM_UUID,
                token: ROOM_TOKEN,
                uid: UNIQUE_CLIENT_ID,
                writable: true,
                fastRegion: FastRegion.cn_hz,
            ),
            onFastRoomCreated: onFastRoomCreated,
        ),
    ]);
}

GitHub

查看 Github