基础组件库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 line
612 B

  1. import 'package:flutter/material.dart';
  2. ///通用配置,避免一些多次重复的字符串被写在代码中
  3. class Constants {
  4. ///获取模块类型
  5. static const String SkipIdentifierName = "skip_identifier";
  6. ///全局context
  7. //==============================智能粘贴版===================================start
  8. static BuildContext context;
  9. ///智能搜索版是否弹起
  10. static bool isShowIntellectDialog=false;
  11. ///是否缓存设置信息
  12. static String spIsCacheSetModel="spIsCacheSetModel";
  13. //==============================智能粘贴版===================================end
  14. }