import 'package:flutter/material.dart'; /** * des: */ class BottomItem { String? imgStr; String? des; bool? visity; BottomItem(this.des,this.imgStr, {this.visity = true}); } enum ChatRoomMenuType{ XYChatRoomMenuTypeCardiacValue, //心动值开关 XYChatRoomMenuTypeFreeMacphone, //自由上麦开关 XYChatRoomMenuTypeFreeLockMacphone, //自动锁麦开关 XYChatRoomMenuTypeRoomLock, //房间上锁 XYChatRoomMenuTypeClearScreen, //关闭公屏 XYChatRoomMenuTypeMcphoneSeatIncome,//麦位收益 XYChatRoomMenuTypeMcphoneBackgroundMusic,//背景音乐 XYChatRoomMenuTypeMcphoneSeatManage,//麦序管理 XYChatRoomMenuTypeRoomManage, //房间管理 XYChatRoomMenuTypeRoomShare, //分享 XYChatRoomMenuTypeRoomOnlineUsers, //在线用户 XYChatRoomMenuTypeRoomReceiver, //听筒设置 XYChatRoomMenuTypeRoomEffect, //礼物动效开关 XYChatRoomMenuTypeRoomConveneFans, //着急粉丝 XYChatRoomMenuTypeRoomSound, //混响音效 XYChatRoomMenuTypeCardiacValueList, //心动值列表 XYChatRoomMenuTypeRotaryTable, //大冒险 XYChatRoomMenuTypePK, } class ManageBottomItem { ChatRoomMenuType? menuType; String? img; String? title; bool? typeSwitch; ManageBottomItem(this.menuType,this.img,this.title,{this.typeSwitch = null}); } class AdventureItem{ String? itemKey; String? itemValue; AdventureItem(this.itemKey,this.itemValue); } class AdventureInputControllers{ TextEditingController? itemKeyController; TextEditingController? itemValueController; AdventureInputControllers(this.itemKeyController,this.itemValueController); }