24 lines
808 B
Dart
24 lines
808 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:star_lock/mine/valueAddedServices/valueAddedServicesSMSTemplate/valueAddedServicesListSMSTemplate/customSMSTemplateList_entity.dart';
|
|
|
|
class CustomSMSTemplateListState {
|
|
CustomSMSTemplateListState() {
|
|
if (Get.arguments != null) {
|
|
channelType.value = Get.arguments['channelType'];
|
|
}
|
|
}
|
|
//高亮样式
|
|
final TextStyle highStyle =
|
|
TextStyle(color: const Color(0xFFEEDFA8), fontSize: 20.sp);
|
|
|
|
//默认样式
|
|
final TextStyle defaultStyle =
|
|
TextStyle(color: Colors.black, fontSize: 20.sp);
|
|
|
|
RxBool isVip = false.obs;
|
|
RxList<CustomSMSTemplateItem> smsTemplateList = <CustomSMSTemplateItem>[].obs;
|
|
RxInt channelType = 0.obs;
|
|
}
|