import 'package:flutter/material.dart'; ///通用配置,避免一些多次重复的字符串被写在代码中 class Constants { ///获取模块类型 static const String SkipIdentifierName = "skip_identifier"; ///全局context //==============================智能粘贴版===================================start static BuildContext context; ///智能搜索版是否弹起 static bool isShowIntellectDialog = false; ///是否缓存设置信息 static String spIsCacheSetModel = "spIsCacheSetModel"; //==============================智能粘贴版===================================end //==============================弹窗===================================start ///用户协议显示 static String isShowPolicy = "is_show_policy"; ///推送权限弹窗 static String showNotiPermissionTime = "showNotiPermissionTime"; //==============================弹窗===================================end //==============================版本号,控制引导页显示=================================== static String versionNumber = "versionNumber"; ///masterId static String masterId = "sp_master_id"; static String notificationAgree = "notificationAgree"; ///是否设置推送tag static String isSetTag= "isSetTag"; }