import 'package:get/get.dart'; class LabMainState { // 是否显示左侧更多Tab Icon final RxBool _showLeftMoreIcon = false.obs; set showLeftMoreIcon(bool value) => _showLeftMoreIcon.value = value; bool get showLeftMoreIcon => _showLeftMoreIcon.value; // 是否显示右侧更多Tab Icon final RxBool _showRightMoreIcon = false.obs; set showRightMoreIcon(bool value) => _showRightMoreIcon.value = value; bool get showRightMoreIcon => _showRightMoreIcon.value; // 底部自定义文本 final RxString _bottomCustomText = ''.obs; set bottomCustomText(String value) => _bottomCustomText.value = value; String get bottomCustomText => _bottomCustomText.value; }