WGShare.Mobile.Flutter/wgshare/lib/pages/metting/meeting_main_state.dart

22 lines
602 B
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import 'package:flutter/cupertino.dart';
import 'package:get/get.dart';
import 'package:get/get_rx/src/rx_types/rx_types.dart';
class MeetingMainState {
MeetingMainState() {
///Initialize variables
}
/// 是否显示会议信息浮层
late RxBool isShowMeetingInfoFloatingLayer = false.obs;
/// 是否显示音频选择浮层
late RxBool isShowMeetingAudioFloatingLayer = false.obs;
/// 聊天弹窗中Listview控制器
late ScrollController chatController = ScrollController();
/// 当前页面状态0语音1视频2共享
late RxInt pageState = 0.obs;
}